//<![CDATA[
$(document).ready(function(){


	$('a.iframe').each(
		function (i) {
			$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "'  frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:100px; height:21px;' allowTransparency='true'></iframe>");
		}
	);

	
	// 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);
	});
	
});
//]]>

