$(document).ready(function(){

	$("#poster_name").attr("value","Name");
	$("#poster_email").attr("value","Email Address");
  $("#poster_website").attr("value","Website");
  $("#poster_title").attr("value","Comment Title");
  $("#poster_comment").attr("value","Comment");
  $("#is_poster_real").attr("value","Is fire hot or cold?");

	$(".text").each( function () {		
		$(this).attr("default", $(this).val());
		if ( $(this).attr("default") ) 
		{
			$(this).focus( function () {
				if ( $(this).attr("default") == $(this).val() ) {
					$(this).attr("value", "").addClass("black");
				}
			}).blur( function () {
				if ( $(this).val() == '' ) {
				 $(this).attr("value", $(this).attr("default")).removeClass("black");
				}
			});	
		}
	});	
});







