$(document).ready(function(){
	$('#menuLeft li,#menuTop li').hoverIntent(
		function(){
			$('ul:not(ul ul ul)',this).css({'width':'180px','height':'auto'}).stop().animate({'height':'show'},200);
		}, 
		function(){
			$('ul:not(ul ul ul)',this).stop().animate({'height':'hide'},200);			
		}
	);
});
