window.onload = function () {
	
	/*
		The quick contact form
	
	$("contact_me_form").addEvent("submit", function(e) {
		
		e = new Event(e);
		e.preventDefault();
		
		if($("frm_name").value != "" && $("frm_contact").value != "") {
		
			$(e.target).send({
				onComplete:function(){
					$E("#sidebar .contact_me").setHTML("<h2>Thank you</h2><p>We&rsquo;ll be in touch soon.</p>");
				}
			});
		
		} else {
			alert("You must enter a name, email address or phone number.");
		}
		
	});
	
	*/

}