Thanks Mike (and sorry about getting your name wrong, not sure how i
managed that).
You are correct of course, I changed the settings to
timeout: 10000,
speed: 2000,
and response time is much better in IE.
I'll check it on lower powered computers to make sure I am being more
responsible with CPU usage.
Thanks again,
Pete
On Nov 17, 4:58 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> > $('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