$(document).ready(
	function()
	{
		// menu
		$("#side-menu > li").hover(function(){
			$(this).find("ul").show("slow");
			$(this).find("a:first").addClass("active");
		}, function(){
			$(this).find("ul").hide("slow");
			$(this).find("a:first").removeClass("active");
		});

		// hmenu
		$("#hmenu > li").hover(function(){
			$(this).find("ul").animate({ opacity: "show" }, "fast");;
		}, function(){
			$(this).find("ul").animate({ opacity: "hide" }, "fast");;
		});


});


		

