var RecaptchaOptions = {
	   custom_translations : {
			visual_challenge : visual_challenge,
			audio_challenge : audio_challenge,
			refresh_btn : refresh_btn,
			instructions_visual : instructions_visual,
			instructions_audio : instructions_audio,
			help_btn : help_btn,
			play_again : play_again,
			cant_hear_this : cant_hear_this,
			incorrect_try_again : incorrect_try_again
		},
	theme : 'white'
};

function postForm(){
	params = '';
		n = $(":input").each(function(){
			params += this.name +'='+ this.value+'&';
		}
	);
	$('#loading').fadeIn('fast');
	$.post('/contact/contact.php?'+params,'',formRespond);
}

function formRespond(xhr){
	$('#loading').fadeOut('slow');
	if(xhr){
		$('#facebox .message').html(xhr);
	}
	Recaptcha.reload ();
}

jQuery(document).ready(function() {
jQuery('a[rel*=facebox]').facebox(); 
})