> $('div.allPops').cycle({
>     cleartype:  1,
>      timeout:  5000,
>      speed: 3200,
>      pager: 'div#pager',
>          fx: 'fade',
>           pause:         1,
>     pauseOnPagerHover: 1});


You are crushing the CPU with those settings.  Best case scenario,
you're asking the browser to perform an opacity animation for 3.2
seconds out of every 5.  That is just not a good idea and not a
responsible use of your visitors CPU.   Even though the response in
non-IE browsers is ok, take a look at your CPU usage when that page is
loaded!

Mike

Reply via email to