jQuery(document).ready(function(){
  if (search_highlight_terms) {
    // Get Keywords, build array
    stringArray = searchString.split(' ');
    // Iterate through array
    jQuery.each(stringArray, function(){
      // attach highlight function
      jQuery('#product-list td').highlight(this);
    });
  }
});