$(document).ready(function(){
	//hacking the heck outta the contact form
	
	$("form.form2").attr("id", "cform");
	
	$("#cform").appendTo("#contact-form"); // For where to buy page
	
	//This is for the response after the submit button is hit
	
	$("div:contains('Data')").attr("id","received").appendTo("#contact-form").fadeIn();
});