$(function(){
  $("#login").inp_focus("Login")
  
  $('#button').mouseover(function(){
    $(this).attr('src', '/images/btn_logar_over.gif')
  }).mouseout(function(){
    $(this).attr('src', '/images/btn_logar.gif')
  })

  $("#password").focus(function(){
    //if ($(this).val() != ''){
      //alert($('.password').html())
      $('.password').html("")
    //}
  })

  $("#password").blur(function(){
    if($(this).val() == '')
      $('.password').html("Senha")
  })
  })