$(document).ready(function(){
	$('#cartNav2 ul').css({opacity:.9});
	$('#cartNav2 .subMenu').hover(
		function(){
			$('ul',this).css({'width':'210px','height':'auto'}).stop().animate({'height':'show'},200);
		}, 
		function(){
			$('ul',this).stop().animate({'height':'hide'},200);			
		}
	);
});
