$(document).ready(function() {
	$(".pst-nav").each(function(){
		$(this).siblings("div:gt(0)").hide();
	    $(this).children("li").mouseover(function(){
			    $(this).parent().siblings("div").hide();
				$(this).siblings().removeClass("active");
				$(this).addClass("active");
				var adiv=$(this).children().attr("href");
				$(adiv).show();
		   });
	});
   $("#pst-books>div").mouseover(function(){
	   $("#pst-books>div").attr("class","bookitem2");
       $(this).attr("class","bookitem");
   });
});
