Edit, for updated question: Your site appears to work for me now, be sure to clear your cache with Ctrl+F5 if you're still having issues.
Your if()
check is a little off, this:
if(response.indexOf('|' != -1)) {
should be:
if(response.indexOf('|') != -1) {
currently you're getting a false positive, and the code inside that if
shouldn't even be executing...but they are :)
Nick Craver
2010-09-14 19:59:47