// JavaScript Document $(document).ready(function() { $(".tab a").click(function() { $($(".tab a.active").attr("href")).hide(); $(".tab a.active").removeClass("active"); $(this).addClass("active"); $($(this).attr("href")).fadeIn("slow"); return false; }); });