
jQuery.noConflict();
jQuery(document).ready(function($) {
  
  //===========================================================================
  // DOWNLOAD checkbox mouseovers
  //===========================================================================
  if (jQuery('input.search-input').attr('value') == '') {
    jQuery('input.search-input').attr('value', 'Enter Keyword(s)');
  }
  
  jQuery('input.search-input').focus(function() {
    if (jQuery(this).attr('value') == 'Enter Keyword(s)') {
      jQuery(this).attr('value', '');
    }
  });
  
  jQuery('input.search-input').blur(function() {
    if (jQuery(this).attr('value') == '') {
      jQuery(this).attr('value', 'Enter Keyword(s)');
    }
  });
  
});

