// JavaScript Document
 $("#topmenu").ready(function(){
   //drop down sub menus
   $("#topmenu li").hover(
		function() { $("ul", this).show("fast"); $(this).addClass("hover");}, //show with slide effect
		function() { $("ul", this).hide(); $(this).removeClass("hover");}
		);							  
 });
  $(document).ready(function(){
	 //add css class 'sidebar_hover' to sidebar01 menu items on mouseover
	$("#leftpanel li").hover(
		function() { $(this).addClass("nav_hover"); }, 
		function() { $(this).removeClass("nav_hover"); }
		);
	$(".category").hover(
		function() { $(this).css( "border","1px solid #009900" );}, //show border
		function() { $(this).css( "border","none" );}
		);
 });
  
