delay between requests

delay between requests


Hi,
how can make some delay between each $.ajax request? The problem is,
that I have to call script.php every 5 sec., until the response is
different than -1. To do not create infinity loop, I want to call the
script max. 99 times.
Any help?
Loop like this:
for(var loop = 0; loop < 9; loop++) {
getGenomeResponse(genomeURL, genomeQueryString);
if(response != -1) break;
setTimeout("function() {};", 5000);
}
just doesn't work, cause setTimeout seems to ran in other thread.
Thanks a lot in advance
rgds
p.
            }