////// Begin img: Hack (place below line 855, assuming you installed the 'site:this' hack as well) ////// var pattern = /img%3A/i; if (pattern.test(aSearchTerms)==true) { // remove the string 'img%3A' from the search terms aSearchTerms = aSearchTerms.replace(pattern,""); // replace first occurance of the string 'search' with the string 'images' url = url.replace(new RegExp(/search/i),"images"); // replace first occurance of the string 'www' with the string 'images' url = url.replace(new RegExp(/^http:\/\/www/i),"http://images"); } ////// End img: Hack //////