$(document).ready(function(){
	//animacion del menu
	$("#menu ul li a").hover(
		//rollover//
		function(){
		
		$(this).stop().animate({"paddingLeft": "25px"}, { queue: false, duration:300, easing: "easeOutCubic" });
	
		}, 
		//rollout//
		function(){
			
		$(this).stop().animate({"paddingLeft": "5px"}, { queue: false, duration:300, easing: "easeOutCubic" });
	
	});
	
	
	//login
	
	
$("#formulario-login").css({"opacity": 0});
$("#formulario-login").css({"display": "none"});

	$("#login-contenedor").hover(
		//rollover//
		function(){
		
		$(this).stop().animate({"height": "120px"}, { queue: false, duration:300, easing: "easeOutCubic" }).delay(300);
		$("h2", this).animate({"opacity": 0}, { duration:100 });
		$("#formulario-login").css({"display": "block"});
		$("#formulario-login").delay(300).animate({"opacity": 1}, { duration:100 });
		}, 
		//rollout//
		function(){
		$("#formulario-login").css({"display": "none"});
		$("#formulario-login").css({"opacity": 0});
		$("h2", this).animate({"opacity": 1}, { duration:300 });
		$(this).stop().animate({"height": "60px"}, { queue: false, duration:300, easing: "easeOutCubic" });
	});
	
	
	//banners
	$(".banner294x198").hover(
		//rollover//
		function(){
		
		$("h2", this).stop().animate({"height": "45px"}, { queue: false, duration:300, easing: "easeOutCubic" }).animate({"paddingTop": "25px"}, { queue: false, duration:300, easing: "easeOutCubic" });
		$(".no-top", this).stop().animate({"height": "54px"}, { queue: false, duration:300, easing: "easeOutCubic" }).animate({"paddingTop": "16px"}, { queue: false, duration:300, easing: "easeOutCubic" });
		}, 
		//rollout//
		function(){
		$("h2", this).stop().animate({"height": "35px"}, { queue: false, duration:300, easing: "easeOutCubic" }).animate({"paddingTop": "15px"}, { queue: false, duration:300, easing: "easeOutCubic" });
		$(".no-top", this).stop().animate({"height": "44px"}, { queue: false, duration:300, easing: "easeOutCubic" }).animate({"paddingTop": "6px"}, { queue: false, duration:300, easing: "easeOutCubic" });
	
	});
	
	
	

	
	
	
	
	});

