$(function() { var links = $("ul#featList a"); links.filter(":first").addClass("selected").animate({ marginLeft: "10px" }, 300); var tabContainer = $("div#fullFeat > div"); tabContainer.hide().filter(":first").show(); // hide the hyperlinks to top of page after menu items (with js disabled), to stop lots of scrolling $("a.upTop").hide(); links.click(function() { links.removeClass("selected").animate({ marginLeft: "0px" }, 100); $(this).addClass("selected").animate({ marginLeft: "10px" }, 300); tabContainer.hide().filter(this.hash).fadeIn(400); return false; }); });