$(document).ready(function() {
	$('.descarga').hover(function(){
		$(this).find(".contdes").stop().animate({color:"#fff",backgroundColor:"#545851"},500);
		$(this).find(".contdes").find(".fledes img").attr({src:"../imgs/flecha5.png"});
    },function(){
		//$(this).find(".contdes").stop().animate({color:"#fff",backgroundColor:"#545851"},100);
		$(this).find(".contdes").stop().animate({color:"#63544a",backgroundColor:"#fff"},800);
		$(this).find(".contdes").find(".fledes img").attr({src:"../imgs/flecha3.png"});
    });
	
	$('.descarga').click(function(){
		$(this).find(".contdes").animate({color:"#63544a",backgroundColor:"#fff"},800);
		
		location.href="descargar.php?f=archivos/"+$(this).attr("id");
    });
});

