$(document).ready(function()
{
      $(".changeable").each(function()
      {
            value = $(this).attr('rel');
            $(this).val(value);
            $(this).css('color', 'gray');
      });

      $(".changeable").focus(function()
      {
            if($(this).val() == $(this).attr('rel')) {
                  $(this).val("");
                  $(this).css('color', '');
            }
      });

      $(".changeable").blur(function()
      {
            if($(this).val() == "") {
                  value = $(this).attr('rel');
                  $(this).val(value);
                  $(this).css('color', 'gray');
            }
      });
});

