$(document).ready(function(){
	$('.ent').hover(function(){
		$(this).find('.ent_sobre').stop().animate({height:'177px'},300);
		$(this).find('.ent_texto').stop().animate({opacity:1},200);
    },function(){
		$(this).find('.ent_sobre').animate({height:'30px'},800);
		$(this).find('.ent_texto').animate({opacity:0},800);
    });

	$('.ent').click(function(){
		var destino=$(this).find('.ent_img a').attr('href');
		$('#wrapper').animate({opacity:0},500,function() {
			window.location.href=destino;
		});
    });


	$('.enl').hover(function(){
		$(this).find('.enl_img').stop().animate({backgroundColor:$("#header").attr('class').split('-')[1]},500);
    },function(){
		$(this).find('.enl_img').animate({backgroundColor:'#fff'},800);
    });

	$('.enl').click(function(){
		window.open($(this).attr('class').replace('enl ','').replace(' dcha',''));
    });
});
