var value_holder = {};

$(function () {

	$("#frmRequestQuote input[type='text']").each(function () {
	
		value_holder[$(this).attr("name")] = $(this).val();	
	
	}).click(function () {
	
		if ($(this).val() == value_holder[$(this).attr("name")]) {

			$(this).val("");
		
		}
	
	}).blur(function () {
	
		if ($(this).val() == "") {
		
			$(this).val(value_holder[$(this).attr("name")]);
		
		}
	});
});
