People If you wanna do banner rotation just use something much simpler
1. Go to whichever style you want banner rotated. (Style Manager > Style Name > All Style Options)
2. In The phpinclude_start box insert this
PHP Code:
// Foreach banner you want to rotate insert a a line such as:
// 'images/bannerx.gif',
$banner_array = array(
'images/banner1.jpg',
'images/banner2.jpg',
'images/banner3.jpg'
);
$banner = $banner_array[mt_rand(0,count($banner_array)-1)];
3. In the header template replace the section that deals with the img tag with something like this
HTML Code:
<img src="$banner" border="0" alt="$vboptions[bbtitle]" usemap="#Map" />
Basically you're just changing the the src to the $banner variable... very easy requires no special html or javascript or any of that stuff..