//<![CDATA[
$(document).ready(function(){
	
	// Inicializamos el shadowbox
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	//Para poder utilizar shadowbox despues de peticion AJAX
	$('body').ajaxComplete(function(request, settings){$("a[rel^='prettyPhoto']").prettyPhoto();});

	// Decimos que todas los links con ese rel, se habran en una ventana nueva 
	$("a[rel=nueva_ventana]").click(function(){window.open($(this).attr('href'));return false;});

	$('#btnContacto').click(function(){
		if( $('#emailNews').val() == '' )
		{
			//alert("DEBE DE INTRODUCIR UN EMAIL VALIDO\n");
			//return false;
		}
	});
	
	$('#enlaces a').mouseenter(function(){
		$('#enlaces a').animate({bottom : '-10px'},100);
		$(this).animate({bottom : '-3px'},100);
	});
	$('#enlaces a').mouseleave(function(){
		$(this).animate({bottom : '-10px'},100);
	});
	
});

function mostrarOcultar(n) {

	if( $('#tabla'+n).css('display') == 'none' ){
		$('#tabla'+n).fadeIn('normal');
		$('#btn-mostrar'+n).fadeOut('fast');
		$('#btn-ocultar'+n).fadeIn('fast');
		
	}else{
		$('#tabla'+n).fadeOut('normal');
		$('#btn-ocultar'+n).fadeOut('fast');
		$('#btn-mostrar'+n).fadeIn('fast');
		
	}
}
//]]>

