(function ($) {
// Use jQuery with the shortcut:
  console.log($.browser);
// Here we immediately call the function with jQuery as the parameter.

jQuery(document).ready( function() {
  if (jQuery('.block-search .content .form-text').val() == '') {
    jQuery('.block-search .content .form-text').val('Search Keywords')
  }
});

}(jQuery));;

