	Cufon.replace('h1', { fontFamily: 'Din-Bold' });
	Cufon.replace('p', { fontFamily: 'Din-Regular' });
	Cufon.replace('.highlighted', { fontFamily: 'Din-Regular' });
	function verificaForm() {
						var filtro = /^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@+([_a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]{2,200}\.[a-zA-Z]{2,6}$/;
						var nombre = "Todos los campos son obligatorios / All fields are required.";
						var faltantes = false;
						email = false;
	
						$("#el_form input").each(function (i) {
							if (this.name=="Email") {
								if (!filtro.test(this.value)) {
									email = true;
									faltantes = true;
								}
							} else {
								if (this.value=="") {
									faltantes = true;
								}
							}
						});
	
						if (faltantes) {
							if (email) {
								alert("El email es invalido / Email is invalid.\n");
								return false;
							} else {
								alert(nombre);
								return false;
							}
						} else {
							return true;
						}		
	}
	$(function() { 
		$('.contacto').click(function(e) {
						  e.preventDefault();
  						  $('#spacer_100').slideToggle(300);
						  $('#contact_form').slideToggle(1000);
					  });
		if (window.location.href.indexOf('#contact')!=-1) {
						  $('#spacer_100').hide();	
						  $('#contact_form').show();
		} else if (window.location.href.indexOf('#sent')!=-1) {
						  $('#ok_message').show().animate({opacity: 1.0}, 5000).fadeOut(2000, function() { $(this).remove(); });
						  
		}
	});