
$(function(){ 
	$('.nav ul li').hover(
		function(){
			$(this).children('ul').stop(true,true).slideDown('slow');
			$(this).focus().css({background:'url(images/nav2.gif) no-repeat -71px 0'});
		},function(){
			$(this).children('ul').stop(true,true).slideUp('slow');
			$(this).focus().css({background:'none'});
		});
	$('.nav>ul>li>ul>li').hover(
	function(){
			$(this).css({background:'url(images/nav-bg2.png) repeat'});
			$(this).children("a").css("color","#902e41");
		},function(){
			$(this).css({background:'none'});
			$(this).children("a").css("color","#fff");	
		});
	
	
});

