function send_contact(){

	/*
	var myForm = document.getElementById("contact_form");

	alert(myForm.first_name.value);

	alert(myForm.last_name.value);

	alert(myForm.address.value);
	alert(myForm.city.value);
	alert(myForm.state.value);
	alert(myForm.zipcode.value);
	alert(myForm.phone_day.value);
	alert(myForm.phone_evening.value);
	alert(myForm.email.value);
	alert(myForm.coach_number.value);
	alert(myForm.description.value);
	alert(myForm.image.value);
	alert(myForm.capcha_code.value);

	
	$.get('includes/posts_comments.php', 
			{ 
				comment_author: 		myForm.comment_author.value, 
				comment_author_email: 	myForm.comment_author_email.value,
				comment_content:		myForm.comment_content.value,
				comment_post_ID:		myForm.comment_post_ID.value
			},


	document.getElementById("replace_text").innerHTML = 
											"<div style=\"padding-top:100px;\">"+
											"<h2 class=\"success center\">SUCCESS!</h2>"+
											"<p class=\"bigfont center\">Your submission was received.  A Featherlite design consultant wil contact you soon.</p>"
											"<div>";
	*/
}
function defaultText(obj, eventType){

	if (eventType == "focus"){
		if (obj.value == obj.title){
			obj.value = "";
		}// end if

	}
	else{
		if (obj.value == ""){
			obj.value = obj.title;
		}
	}
}