var tempDir="";
function setDir(path){
tempDir=path;
}
window.addEvent('domready', function(){
		$('contactForm').addEvent('submit', function(e) {
		e.stop();
		var log = $('contact-form-feedback').empty().addClass('ajax-loading');
		this.set('send', {onComplete: function(response) { 
			if(response.search(/Thank you/)==0){
			resetForm();											 
			}
			log.removeClass('ajax-loading');
			log.set('html', response);
			resetCaptcha();
		}});
		this.send();
	});		
});

function resetForm(){
document.getElementById('contactForm').reset()
};

function resetCaptcha(){
document.getElementById('capImg').src=tempDir+'/captcha/securimage_show.php?sid=' + Math.random();
document.getElementById('contactForm').captchaText.value='';
};

