
    $(document).ready(function() {
		
		
		$("#botonintro").click(function(){
			if(confirm("NOTA DE AVISO / LEGAL NOTICE \n Al pulsar aceptar confirmas que has leido la nota de aviso y eres mayor de edad o cuentas con permiso paterno para entrar en la web \n If you pressed Accept, you confirm you've read the legal notice and you are over 18, or your parents allow you to enter the web."))
			{
				document.cookie = 'confirmado=si' ;
				//window.location.href="http://www.estasmuerto.com/index.php";
				 location.reload(true);
			}
			else
			{
				window.location = "http://www.estasvivo.com";
			}	
		});
	
		$("#botonintro").hover(function(){
				$('body').css('cursor', 'pointer'); 
			},function(){
				$('body').css('cursor', 'auto'); 
		});
		
		$("#divlegal").hide();

		$("#despliega_legal").click(function(){
			$("#divlegal").toggle("fast");
		});
		
		$("#despliega_legal").hover(function(){
				$('body').css('cursor', 'pointer'); 
			},function(){
				$('body').css('cursor', 'auto'); 
		});
		
		$(".ghost").hover(function(){
			$(this).fadeTo(2000,0.1);
		},function(){
			$(this).fadeTo(500,1);
		});


	});
