$(document).ready(function(){
	zvMenu("nav-categories",100);
	//zvNoticeAnimate();
});
function zvMenu(ulElementId,speed){
	$("#"+ulElementId).children("li:has(ul)").hover(
		function(){
			$(this).find("ul>li:last").addClass("li-last-s1");
			$(this).children("ul").slideDown(speed);
		},
		function(){
			$(this).children("ul").hide();
		}
	);
	$("#"+ulElementId).find("li>ul>li>a").hover(
		function(){
			$(this).animate({paddingLeft:"10px"},speed);
		},
		function(){
			$(this).animate({paddingLeft:"10px"},speed);
		}
	);

}














