$(document).ready(function()
{
  $('#search_keywords').addClass('empty').val('Buscar...');
  
  $('#search_keywords').focus(function()
  {
    if ($(this).hasClass('empty'))
      {
        $(this).removeClass('empty').val('');
      }
  });
  
  $('#search_keywords').blur(function()
  {
    if ($(this).val() == '')
      {
        $(this).addClass('empty').val('Buscar...');
      }
  });
});
