$(function(){

	$("ul.menu li").hover(function(){
		$(this).find("ul:first").slideDown(200);
	}, function(){
		$(this).find("ul").slideUp(200);
	});
	
	
	// Menu principal
	$('ul.menu>li>a').mouseover(function(){
		$(this).animate({
			backgroundColor: "#B51D1D"
		}, 500 );
	}).mouseout(function(){
		$(this).animate({
			backgroundColor: "#820000"
		}, 700 );
	});
	
	// Menu Submenu
	$('ul.menu ul li a').mouseover(function(){
		$(this).animate({
			backgroundColor: "#eee"
		}, 500 );
	}).mouseout(function(){
		$(this).animate({
			backgroundColor: "#F7F7F7"
		}, 700 );
	});
	
});	
