$(document).ready(function(){

   $("#name").val("Name").focus(function() {
   
      if ($(this).val() == "Name") {
         $(this).val("")
      }
      
   });   
   $('#name').blur(function() {
   
      if ($(this).val() == '') {
         $(this).val("Name");
     }
    
   });
   
   
   $("#email").val("Email").focus(function() {
   
      if ($(this).val() == "Email") {
         $(this).val("")
      }
      
   });   
   $('#email').blur(function() {
   
      if ($(this).val() == '') {
         $(this).val("Email");
     }
    
   });
   
   
   $("#phone").val("Phone").focus(function() {
   
      if ($(this).val() == "Phone") {
         $(this).val("")
      }
      
   });   
   $('#phone').blur(function() {
   
      if ($(this).val() == '') {
         $(this).val("Phone");
     }
    
   });
   
   $("#comments").val("Questions/Comments").focus(function() {
   
      if ($(this).val() == "Questions/Comments") {
         $(this).val("")
      }
      
   });   
   $('#comments').blur(function() {
   
      if ($(this).val() == '') {
         $(this).val("Questions/Comments");
     }
    
   });
   
   $("#code").val("Code").focus(function() {
   
      if ($(this).val() == "Code") {
         $(this).val("")
      }
      
   });   
   $('#code').blur(function() {
   
      if ($(this).val() == '') {
         $(this).val("Code");
     }
    
   });
}); 
