//Detectamos los links y los ponemos en el nivel contenedor

$(document).ready(function() {

$(".cajas_home").click(function(){
     		window.location=$(this).find("h3 a").attr("href");
     		return false;
			});	
			
$(".cajas_proyecto").click(function(){
     		window.location=$(this).find("h3 a").attr("href");
     		return false;
			});						
					
//ponemos un estilo a las cajas de la home		
		
$(".cajas_home").mouseover(function(){
     		$(this).addClass('border-blue');
     		$(this).css('cursor','pointer');
			});	

$(".cajas_home").mouseout(function(){
     		$(this).removeClass('border-blue');
			});
			
			
		
					
//ponemos un estilo a las cajas de la home		
		
$(".cajas_proyecto").mouseover(function(){
     		$(this).addClass('cajas_proyecto-bkg');
     		$(this).css('cursor','pointer');
			});	

$(".cajas_proyecto").mouseout(function(){
     		$(this).removeClass('cajas_proyecto-bkg');
			});	
								
			
});
