//$("#wrapper").css("display","none");	
jQuery(document).ready(function($) {
		//$("#wrapper").fadeIn(400);
		$('.contenedor_productos_home ul')
		.mouseover(function(){
				$(this).find("li:first-child + li").stop().animate(
					{"padding-top":"5px"
					},
					{duration:50})
				})
		.mouseout(function(){
				$(this).find("li:first-child + li").stop().animate(
				{"padding-top":"0px"
					},	
					{duration:150})
			})
		
		
		
		
		$('.menu-prod li a')
		.mouseover(function(){
				$(this).find(".flechita").stop().animate(
					{"background-position":"0px 0px"
					},
					{duration:250})
				})
		.mouseout(function(){
				$(this).find(".flechita").stop().animate(
				{"background-position":"0px 30px"
					},	
					{duration:250})
			})
		
		
		$('.menu-hierbas li a')
		.mouseover(function(){
				$(this).find(".flechita").stop().animate(
					{"background-position":"0px 0px"
					},
					{duration:250})
				})
		.mouseout(function(){
				$(this).find(".flechita").stop().animate(
				{"background-position":"0px 30px"
					},	
					{duration:250})
			})
		
		$('.menu-azucar li a')
		.mouseover(function(){
				$(this).find(".flechita").stop().animate(
					{"background-position":"0px 0px"
					},
					{duration:250})
				})
		.mouseout(function(){
				$(this).find(".flechita").stop().animate(
				{"background-position":"0px 30px"
					},	
					{duration:250})
			})
		
		$('.menu-funcionales li a')
		.mouseover(function(){
				$(this).find(".flechita").stop().animate(
					{"background-position":"0px 0px"
					},
					{duration:250})
				})
		.mouseout(function(){
				$(this).find(".flechita").stop().animate(
				{"background-position":"0px 30px"
					},	
					{duration:250})
			})

})
