window.addEvent('domready', function() {
	//Code to add FormCheck to the current from.
	var myCheck = new FormCheck('lightform', {
		display : {
			fadeDuration : 750,
			tipsOffsetX : -15,
			tipsOffsetY : -8
		},
		alerts : {
			email: "Por favor, introduzca un e-mail v&aacute;lido: <br /><span>Ej. sunombre@dominio.com</span>",
			url: "Por favor, introduzca una url válida: <br /><span>Ej. http://www.susitio.com</span>",
			spamcheck: "<span>4 + 3 = ???</span>",
			lengthmin: "Debe contener al menos %0 caracteres"
		},
		regexp : {
			spamcheck: /^[7]+$/
		}
	});
});
