window.addEvent('domready', function()
{
	$('form_contactus').addEvent('submit', function(_evt)
	{
		_evt.stop();

		//we send our data:
		new Request.JSON({
			url: this.getProperty('action'),
			data: {
				'name': $('form_contactus_name').getProperty('value'),
				'phone': $('form_contactus_phone').getProperty('value'),
				'email': $('form_contactus_email').getProperty('value'),
				'msg': $('form_contactus_comments').getProperty('value')
			},
			onComplete: function(_obj) {
				$('formlog').set('text', _obj.msg);
				new Fx.Tween($('formlog'), 'opacity').start('opacity', 0, 1); 
				new Fx.Tween($('form_contactus'), 'opacity').start('opacity', 1, 0);
			}
		}).send();
	});
});



