
$(document).ready(function() {

	// ABRIR LINKS EXTERNOS EN VENTANA NUEVA
	$("a[@rel='external']").click(function(){this.target = "_blank";});


	// colocar popups en todas las imagenes de la web
	var a =$("#contenido img");
	$.each( a, function(){
		$(this).wrap('<a class="thickbox" href="' + $(this).attr('src') + '" title="' + $(this).attr('alt') + '"></a>');

	});

	//if ($('#contenedor').height() < $('#contenido').height()) {
		$('#contenido').css("height", $('#contenedor').height());
	//}
	
	$("#form_contacto").submit( function() {
		//return $("input", this).val().length > 0;

		if ($("#Email").val() == "") {
			alert ("\n Por favor introduzca una cuenta de correo.")
			$("#Email").focus();
			return false;
		}


		if ($("#Email").val().indexOf('@',0) == -1 ||
		$("#Email").val().indexOf('.',0) == -1) {
			alert ("\n Debe utilizar una cuenta de correo valida.")
			$("#Email").select();
			$("#Email").focus();
			return false;
		}

		return true;

	} );



});



function abrir( web, alto, ancho ) {
	if ( window.pantmsg ) { pantmsg.close(); }
	pantmsg = open(web, 'pantmsg',"top=" + (screen.height - alto) / 2 + ",left=" + (screen.width - ancho) / 2 + ",toolbar=no,width=" + ancho + ",height=" + alto + ",directories=no,status=no,scrollbars=no,resize=no,menubar=no");
	pantmsg.focus();
}



