/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


jQuery(function($){
    

    $('.autoEmpty').each(function(){
    var defaultValue = $(this).val();
    $(this).focus(function(){
    if($(this).val() == defaultValue){
         $(this).val('');

         }
         });

    $(this).blur(function(){
    if($(this).val() == ''){
         $(this).val(defaultValue);

         }
         });

    });

});

