$(document).ready(function(){
	$(".subMenu").hover(
		function(){
				$(this).find('ul').width(160);
				$(this).find('ul').animate({ height: 120});
			
		},
		function(){
				$(this).find('ul').animate({ height: 0, width: 0});
	});
});