$(".menu li").each(function() { $(this); $(this).mouseenter(function() { $(this).addClass('ui-state-hover'); }); $(this).mouseleave(function() { $(this).removeClass('ui-state-hover'); }); });
$("a.fortsatt").each(function() { $(this).button({ icons: { secondary: 'ui-icon-circle-arrow-e' } }); });
$("a.tillbaka").each(function() { $(this).button({ icons: { primary: 'ui-icon-circle-arrow-w' } }); });
$("a.tilltoppen").each(function() { $(this).button({ icons: { primary: 'ui-icon-circle-arrow-n' } }); });

