// JavaScript Document

	$(function(){
		$(".hide").focus(function() {
	                $(this).filter(function() {
	                    // Check to see if we have a blank field or the default text
	                    return $(this).val() === "" || $(this).val() === $(this).attr("title") || $(this).val() === "Your message here...";
	                }).val("")/*.css("color", "#808080")*/;
	            });
	 
	            // When we click off of the field, we expect it to replace the watermark,
	            // unless we have entered text
	            $(".hide").blur(function() {
	                $(this).filter(function() {
	                    // Check to see if the field is blank
	                    return $(this).val() === "";
	                })/*.css("color", "#d0d0d0")*/.val($(this).attr("title"));
	            });
				
});
