
﻿
$(document).ready(function(){$("#menu > li").click(function(e){switch(e.target.id){case"mostRead":$("#mostRead").addClass("active");$("#mostComments").removeClass("active");$("#mostRecommended").removeClass("active");$("div.mostRead").fadeIn();$("div.mostComments").css("display","none");$("div.mostRecommended").css("display","none");break;case"mostComments":$("#mostComments").addClass("active");$("#mostRead").removeClass("active");$("#mostRecommended").removeClass("active");$("div.mostComments").fadeIn();$("div.mostRead").css("display","none");$("div.mostRecommended").css("display","none");break;case"mostRecommended":$("#mostRecommended").addClass("active");$("#mostRead").removeClass("active");$("#mostComments").removeClass("active");$("div.mostRecommended").fadeIn();$("div.mostRead").css("display","none");$("div.mostComments").css("display","none");break;}
return false;});});
