/* -------------------------------------------------------------------------- */
/*    
 *    JavaScript Document
 *
 *    Copyright(C) Design with me.
 *
 *    2011-07-29.
 */
/* -------------------------------------------------------------------------- */

$(function(){
var searchForm = $('#searchform');
var inputWord = $('#keywords', searchForm);
var defaWord = 'SEARCH'
  inputWord.val(defaWord);
  inputWord.focus(function(){
  if(this.value == defaWord){
    $(this).val('');
  }
});
  inputWord.blur(function(){  
  if(this.value == ''){  
    $(this).val(defaWord);
  }
});
  searchForm.submit(function(){
    $(':text[value="' + defaWord + '"]').each(function(){
      $(this).val('');
    });

  });
});
