$(document).ready(function()
{
   $("div.field").each(function()
   {
      if($(this).hasClass("required"))
      {
         //$(this).children('input').val("Required");
         $(this).children('input').css('color', '#FF0000');
      }
   });
   $("div.field input, div.field select").not(":submit").focus(function()
   {
      if($(this).val() == 'Required')
      {
         $(this).val("");
         $(this).css('color', '#000');
      }
      if($(this).parent().hasClass("required"))
         $(this).css("background-color", "#FFCCD9");
      else
         $(this).css("background-color", "#B3E2F5");
   });
   $("div.field input, div.field select").not(":submit").blur(function()
   {
      $(this).css("background-color", "#FFFFFF");
   });
});
