$(document).ready(function(){ 
	
  $('input[type=text]').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
      $(this).addClass("hasText");
    }
  });
  
  $('input[type=password]').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
      $(this).addClass("hasText");
    }
  });
  
  $('input[type=text]').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
      $(this).removeClass("hasText");
    } 
  });
  
   $('input[type=password]').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
      $(this).removeClass("hasText");
    } 
  });
}); 
