You have two different scripts on the page that use the variable 'slidespeed' - the blending script and the Conveyor script. Don't confuse this with the fact that the blending script has two script blocks, those count as one script for these purposes. In one script, each instance of 'slidespeed' should be be changed to another name. However, due to the way you have the scripts ordered on the page and the way the blending script handles its speed calculation, you could get away with just changing this:
Code:
var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 0
to:
Code:
var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 1750
Bookmarks