window.onload = function (){
		
		var navegador = navigator.appName 
		if (navegador == "Microsoft Internet Explorer")
		{
			document.getElementById('img_home').attachEvent('onclick',entrar);

			
		}
		else
		{
			
			document.getElementById('img_home').addEventListener('click',entrar,false);
		}
		

}


function entrar() {
	
	location.href="home.php";
}


					$('.boxgrid.captionfull').live("mouseover", function(){
					$(".cover", this).stop().animate({top:'400px'},{queue:false,duration:230});
				});
				
				
					$('.boxgrid.captionfull').live("mouseout", function(){
					$(".cover", this).stop().animate({top:'475px'},{queue:false,duration:530});
				});
				
				
				$('.boxgridb.captionfull').live("mouseover", function(){
					$(".cover", this).stop().animate({top:'400px'},{queue:false,duration:230});
				});
				
				
					$('.boxgridb.captionfull').live("mouseout", function(){
					$(".cover", this).stop().animate({top:'475px'},{queue:false,duration:530});
				});
				
				
				

