$(document).ready(function () {
	$("input[name='your-name']").blur(function (){
		if($(this).val() == "") {
			$(this).val("Your Name:");
		}
	}).focus(function () {
		if($(this).val() == "Your Name:") {
			$(this).val("");
		}
	});
	$("input[name='your-phone']").blur(function (){
		if($(this).val() == "") {
			$(this).val("Phone:");
		}
	}).focus(function () {
		if($(this).val() == "Phone:") {
			$(this).val("");
		}
	});
	$("input[name='fax']").blur(function (){
		if($(this).val() == "") {
			$(this).val("Fax:");
		}
	}).focus(function () {
		if($(this).val() == "Fax:") {
			$(this).val("");
		}
	});
	$("input[name='your-email']").blur(function (){
		if($(this).val() == "") {
			$(this).val("E-mail:");
		}
	}).focus(function () {
		if($(this).val() == "E-mail:") {
			$(this).val("");
		}
	});
	$("input[name='your-subject']").blur(function (){
		if($(this).val() == "") {
			$(this).val("Subject:");
		}
	}).focus(function () {
		if($(this).val() == "Subject:") {
			$(this).val("");
		}
	});
	$("textarea[name='your-message']").blur(function (){
		if($(this).val() == "") {
			$(this).val("Message:");
		}
	}).focus(function () {
		if($(this).val() == "Message:") {
			$(this).val("");
		}
	});
});
