<!-- CONTACT FORM -->
function _submitQuickContact()
{
	var url = 'inc/form.php';
	new Ajax.Updater('contactFormMsg', url,{
			parameters:Form.serialize(document.forms['myContactForm']),
			onSuccess: function() {
				new Effect.Highlight('contactForm', {startcolor:'#4A7C00',endcolor:'#253E00'});	
				if (document.getElementById('errorbox')==null)
			document.getElementById('myContactForm').reset();
			} 
		}
	);
}