function initContactForms() {
	new fValiderAlert("Files/System/xml/contact.xml", "frmContactSubmit");
	new fValiderAlert("Files/System/xml/contact.xml", "contactTeamSubmit");
	//new fValiderAlert("Files/System/xml/contact.xml", "frmSearchSubmit");
}

//
window.addEvent("load", function(e) {
	// global settings for all forms
	fSetAlertOptions({
		width: 188,
		bAlertOnBlur: false, 
		iAlertAutoHide: 3000, 
		fOnErrorShow: function(sInput) {
			//$(sInput).setStyle("background", "pink");
		}, 
		fOnErrorHide: function(sInput) {
			//$(sInput).setStyle("background", "none");
		}
	});
	// create alert for "contact" forms
	initContactForms();
});
