$(document).ready(function(){
 $('.form-row input, .form-row td, .form-row select, .form-row textarea')
 .focus(function(){
 $(this).parents('tr.form-row').addClass("over");
 })
 .blur(function(){
 $(this).parents('tr.form-row').removeClass("over");
 });

 //remove error styling once they start typing
 $(".inputtext, .inputpassword, select, .checkbox, text, textarea").bind("click keyup change",
 function(){
 $(".form-row.over").removeClass("error");
 $(".form-row.over span.error").html('');
 }
 ); 
 
 
 $(".extra")
	.focus(
		function() {
			if ($(this).val() == 'Please tell us...') {
				$(this).val('');
			}
			$(this).addClass("on");
		}
	)
	.blur(
		function() {
			if ($(this).val() == '') {
				$(this).val('Please tell us...');
				$(this).removeClass("on");
			}
		}
	);
 
 });
