$("#name").focus(function() { if($(this).attr("value") == "Name") $(this).attr("value",""); });
$("#companyName").focus(function() { if($(this).attr("value") == "Company Name") $(this).attr("value",""); });
$("#telephone").focus(function() {if($(this).attr("value") == "Tel") $(this).attr("value",""); });
$("#email").focus(function() {if($(this).attr("value") == "Email") $(this).attr("value",""); });
$("#requirements").focus(function() {if($(this).attr("value") == "Requirements") $(this).attr("value",""); });


$("#name").blur(function() { if($(this).attr("value") == "") $(this).attr("value","Name"); });
$("#companyName").blur(function() { if($(this).attr("value") == "") $(this).attr("value","Company Name"); });
$("#telephone").blur(function() {if($(this).attr("value") == "") $(this).attr("value","Tel"); });
$("#email").blur(function() {if($(this).attr("value") == "") $(this).attr("value","Email"); });
$("#requirements").blur(function() {if($(this).attr("value") == "") $(this).attr("value","Requirements"); });

