$(document).ready(function() {    	$("#categories ul li").hover(function() {    	    $(this).find("span img").stop().animate({ width: "72px", filter:0 }, 200);    	    $(this).find("span").stop().animate({ top: "-10px" }, 200);    	},function(){    		var e = this;    	    $(this).find("span img").stop().animate({ width: "62px", filter:0 }, 200);    	    $(this).find("span").stop().animate({ top: "5px" }, 200);    	});			$("#nav ul li").hoverIntent(function() {		$("ul.sub-menu", this)		.fadeIn(200);    },function() {		$("ul.sub-menu", this)		.fadeOut(200);    });});
