$(document).ready(function() {

	// Any pre-populated field: this clears the default text and colors the type black. Restores on blur if nothing entered.
	$(".prefilled").focus(function() {
		var defText = $(this).attr("title")
		if ($(this).val() == defText) {
			$(this).val("").css("color","#000");
		}
	});
	$(".prefilled").blur(function() {
		var defText = $(this).attr("title")
		if ($(this).val() == "") {
			$(this).val(defText).css("color","#999");
		}
	});
});
