/*
 * $Id:$
 *
 * This is a javascript file used for helping with the UI in general
 */

$(document).ready(function() {
  

  $(".placeholder").each(function() {
    if($(this).val() == '') {
      $(this).val($(this).attr('placeholder'));
    } else {
      $(this).addClass('placeholder-has-focus');
    }
  });

  $(".placeholder").click(function() {
    if($(this).val() == $(this).attr('placeholder')) {
      $(this).val('');
      $(this).addClass('placeholder-has-focus');
    }
  });


  $(".placeholder").blur(function() {
    if($(this).val() == '') {
      $(this).val($(this).attr('placeholder'));
      $(this).removeClass('placeholder-has-focus');
    }
  });

});

