$(document).ready(function(){
	var color = '';					   
	$('.menu li').hover(function(){
		color = $(this).children('a').css('color'); 
		$(this).children('a').css('color', '#feffff').animate({ backgroundColor: '#5199b3'}, 1000);	
		$(this).children('ul').fadeIn('slow');
	}, function(){
		$(this).children('a').stop().css( {'background-color': 'transparent', 'color': '' } );
		$(this).children('ul').stop().css({display: 'none', opacity: 1});
	});
	
});


