<!-- // Begin Header portion of the script
// CodeAve.com JavaScript SlideShow
// Created from the JavaScript SlideShow ScriptWriter on 10-02-2000
// http://www.codeave.com

var pictures = new Array
// List all the pictures in the slideshow here
(
"templates/subSilver/images/webhosting-student.png" 
,"templates/subSilver/images/webhosting-soho.png" 
,"templates/subSilver/images/webhosting-sme.png" 
,"templates/subSilver/images/webhosting-enterprise.png" 
);

var advs = new Array
// List all the pictures in the slideshow here
(
"templates/subSilver/images/ad-money-tw.png" 
,"templates/subSilver/images/ad-freepro-tw.png" 
,"templates/subSilver/images/ad-guarantee-tw.png" 
,"templates/subSilver/images/ad-99-tw.png"
,"templates/subSilver/images/ad-money-en.png" 
,"templates/subSilver/images/ad-freepro-en.png" 
,"templates/subSilver/images/ad-guarantee-en.png" 
,"templates/subSilver/images/ad-99-en.png" 
);

var picture_num = 0;
var current_picture = new Image();
current_picture.src = pictures[picture_num];

var adv_num = 0;
var current_adv = new Image();
current_adv.src = advs[adv_num];

function start_show() 
{
// Time is in seconds X 1000
setInterval("slideshowad()", 1500);
setInterval("slideshow()", 2500);
}

function slideshowad() 
{
adv_num++;
if (adv_num == advs.length) 
{
adv_num = 0;
}
current_adv.src = advs[adv_num];
document["rotating_adv"].src = current_adv.src;
}

function slideshow() 
{
picture_num++;
if (picture_num == pictures.length) 
{
picture_num = 0;
}
current_picture.src = pictures[picture_num];
document["rotating_picture"].src = current_picture.src;
}
// End of header portion of script -->

