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: "Lutfen gecerli bir e-posta adresi giriniz: <br /><span>Ornegin. isminiz@hotmail.com</span>",
			url: "Lutfen gecerli bir web adresi giriniz: <br /><span>Ornegin. http://www.cantatar.net -- Ya da kutuyu bos birakiniz</span>",
			spamcheck: "<span>4 + 3 = ???</span>",
			lengthmin: "The length is incorrect, it must be at least %0 characters"
		},
		regexp : {
			spamcheck: /^[7]+$/
		}
	});
});
