$(document).ready(function() {
	$('input#name').focus(function(){
		if ($(this).val() == "First and Last Name") {
			$(this).val("");
		}
	});
	$('input#name').blur(function(){
		if ($(this).val() == "") {
			$(this).val("First and Last Name");
		}
	});
	$('input#email').focus(function(){
		if ($(this).val() == "Email") {
			$(this).val("");
		}
	});
	$('input#email').blur(function(){
		if ($(this).val() == "") {
			$(this).val("Email");
		}
	});
	$('textarea#comments').focus(function(){
		if ($(this).val() == "Comments/Questions") {
			$(this).val("");
		}
	});
	$('textarea#comments').blur(function(){
		if ($(this).val() == "") {
			$(this).val("Comments/Questions");
		}
	});
});
