I have installed the seach box function but it loads part of the code from the end of line 293 on i.e.
";
// if the searched for keyword is not in the cache then add it to the cache
if(!oCache[keyword] && keyword)
addToCache(keyword, results_array);
// if the array of results is empty display a message
if(results_array.length == 0)
{
div += "<tr><td>No results found starting with <strong>" + keyword +
"</strong></td></tr>";
The part before the "; is var div = "<table>";
If I take the statement out the error goes away but of course the ajax does not work.
Any ideals?