window.addEvent("domready", function() {
	$("ajax").value = 1;
	$("contactForm").addEvent("submit", function(e) {
		var inputs = $$("#contactForm input[type=text],#contactForm textarea");
		var ok = 1;
		for(var i=0; i<inputs.length && ok; i++){
			if(inputs[i].value.length == 0){
				ok = 0;
				inputs[i].focus();
			}
		}
		if(ok){
			$("contactForm").set('send', {
				action: $("contactForm").get('action'),
				onSuccess: function(resp) {
					resp = JSON.decode(resp);
					$("sendButton").disabled = false;
					$("msg").set('html', resp['message']);
					$("msg").setStyle("display", "block");
					if(resp['ok'])
						inputs.each(function(el){
							$(el).value = "";
						});
				}
			});
			$("contactForm").send();
			$("msg").setStyle("display", "block");
			$("msg").set('html', '<img src="' + $("stylebase").value + '/images/loader.gif" />');
			$("sendButton").disabled = true;
		}
		e = new Event(e).stop();
	});
});