// $(document).ready(function(){
// });


// Keeping this out of the ready function so that it loads without waiting for the page to complete.
$("input#field_text").click(function() {

	var value = $(this).attr("value");

	if (value ==='Type Here') {
		$(this).attr("value","");
	}
	
});
