$(document).ready(function() {
	$('.enlace').hover(function(){
		$(this).find(".contenl").stop().animate({color:"#fff",backgroundColor:"#545851"},500);
		//$(this).find(".contenl a").stop().animate({color:"#fff"},500);
    },function(){
		//$(this).find(".contdes").stop().animate({color:"#fff",backgroundColor:"#545851"},100);
		$(this).find(".contenl").stop().animate({color:"#63544a",backgroundColor:"#fff"},800);
		//$(this).find(".contenl a").stop().animate({color:"#63544a"},800);
    });
	
	$('.enlace').click(function(){
		$(this).find(".contenl").animate({color:"#63544a",backgroundColor:"#fff"},800);
		
		window.open($(this).attr("id"));
    });
});

