$(document).ready(function() {
            $('.img_home').children('a').children('img').animate({ height: '470', left: '0', top: '0', width: '519'}, 1100);
			 $('.productos_sec').children('a').children('img').animate({ height: '280', left: '-20', top: '0', width: '280'}, 100);
			
			$('.productos_sec').mouseenter(function(e) {
			 $(this).children('a').children('img').animate({ height: '280', left: '-20', top: '-75', width: '280'}, 100);
			 }).mouseleave(function(e) {
			 $(this).children('a').children('img').animate({ height: '280', left: '-20', top: '0', width: '280'}, 100);
			 });
			
			
			// de inicio le damos opacidad 0, luego en la animación le damos uno y le marcamos la posicion
			$('.txt_home1').css('display', 'block');
			$('.txt_home1').animate({ opacity: 0 }, 0);
			$('.txt_home1').animate({ opacity: 1, right: "150px", top: "110px" }, 1000);
			
			$('.txt_home2').css('display', 'block');
			$('.txt_home2').animate({ opacity: 0 }, 0);
			$('.txt_home2').animate({ opacity: 1, right: "100px", top: "110px" }, 1200);
			
});
