	


		// JavaScript Document
window.addEvent('domready', function() {

	$('recaptcha_switch_audio_btn').erase('href');
	$('recaptcha_switch_audio').set('src','images/audio.gif');


	var contactusForm = new FormCheck('contactusform',
			{			
				//makeTips:true,
				submitByAjax:true,
				ajaxEvalScripts : true, 
				onAjaxRequest: function(jsonObj) {
										
				},
				onAjaxSuccess: function(jsonObj) {
					//formloader.empty();
					var decodeJSON = JSON.decode(jsonObj); 
					
					if(decodeJSON.iserror == 0) {
						location.href = '/contact/confirm';
						//alert('all good');
					} else {
						
						//alert('error');
						//location.reload(true);
						$('error').innerHTML = 'You have entered the wrong words. Please try again.';
						Recaptcha.reload ();
						//$('recaptcha_reload_btn').fireEvent('click');
					}
				}				
			});//onSubmit
			
});





