$(document).ready(function(){
 setInputValue('language', 'search');
 $('tr:odd').addClass("odd");
});


setInputValue = function(input_id, text) {
  var input = 'input#' + input_id
  
  if ($(input).val() == '') {
    $(input).val(text);
  };
  
  $(input).focus(function() {
    if ($(this).val() == text) {
      $(this).val('');
      $(this).css("color", "#000");
    };
  });
  
  $(input).blur(function() {
    if ($(this).val() == '') {
      $(this).val(text);
      $(this).css("color", "#999");
    };
  });
};
