// JavaScript Document
var formcheck;
document.addEvent('domready', function()
{
	$$('form.formular').each(function(el)
	{
		formcheck = new FormCheck(el.id,
		{
			display : 
			{
				showErrors : 1,	
				closeTipsButton : 1,
				addClassErrorToField : 1,
				titlesInsteadNames : 1
			}
		});
	});
	$$('form.form_verif').each(function(el)
	{
		formcheck = new FormCheck(el.id,
		{
			display : 
			{
				showErrors : 1,	
				closeTipsButton : 1,
				addClassErrorToField : 1,
				titlesInsteadNames : 1
			}
		});
	});
	
	if($('form_recherche'))
	{
		formcheck = new FormCheck($('form_recherche'),
		{
			submit : false,
			display : 
			{
				showErrors : 1,	
				closeTipsButton : 1,
				addClassErrorToField : 1,
				titlesInsteadNames : 1
			},
			onValidateSuccess : function()
			{
				nettoie_recherche();
			}
		});
	}
});
