

var _wordsToSearch = 'Above the Fold||AutoResponder||AVS (Address Verification Service)||Batch Processing||Blog||Browser||Cache||Click & Mortar||Conversion||Conversion Rate||Cost Per Click||Database||Dynamic Content||eCommerce||Firefox||Flash||Hits||Internet Explorer||ISP||Keyword||Landing Page||Merchant Account|Internet Merchant Account|Meta Tags||Online Gateway||Pay Per Click|PPC|Pay-Per-Click|PPC|Payment Gateway|Virtual Terminal|Relevance||Robot||Search Engine||Search Engine Optimization|SEO|Social Media||Social Networking||SSL (Secure Socket Layer)|SSL|Traffic||Usability Testing|Usability Tests'.split("|");

$(document).ready(function(){

    for (i=0;i <= (_wordsToSearch.length -1 );i=i+1){
    
        if (_wordsToSearch[i].length != 0)
        {
            $('#divContentDiv').highlight(_wordsToSearch[i]);
        }            
  
    }

});