/** 
 *	Common scripts file
 *	@version: 1.0 
 */

window.addEvent('domready', function() {
	var myCheck = new FormCheck('adesione', {
		ajaxResponseDiv : 'box-adesione',
		submitByAjax : true,
		onAjaxRequest : function() 
		{
			//alert('request')
		},
		onAjaxSuccess : function() 
		{
			//alert('success')
			//$('box-adesione').innerHTML(response.text);
		},
		onAjaxFailure: function() 
		{
			//alert('failure')
		}	
	})
});

