<!-- hide script from old browsers

var SlideShowSpeed = 6000; // Slideshow speed (in milliseconds)
var CrossFadeDuration = 6000; // Duration of crossfade (in milliseconds)

var Picture = new Array(); 
var Caption = new Array(); 

Picture[1] = 'Images/001.jpg'// Keep the number of Pictures equal the number of Captions!
Picture[2] = 'Images/002.jpg'
Picture[3] = 'Images/003.jpg'
Picture[4] = 'Images/004.jpg'
Picture[5] = 'Images/005.jpg'
Picture[6] = 'Images/006.jpg'
Picture[7] = 'Images/007.jpg'
Picture[8] = 'Images/008.jpg'
Picture[9] = 'Images/009.jpg'
Picture[10] ='Images/010.jpg'
Picture[11] = 'Images/011.jpg'
Picture[12] = 'Images/012.jpg'
Picture[13] = 'Images/013.jpg'
Picture[14] = 'Images/014.jpg'
Picture[15] = 'Images/015.jpg'
Picture[16] = 'Images/016.jpg'
Picture[17] = 'Images/017.jpg'
Picture[18] = 'Images/018.jpg'
Picture[19] = 'Images/019.jpg'
Picture[20] ='Images/020.jpg'
Picture[21] = 'Images/021.jpg'
Picture[22] = 'Images/022.jpg'
Picture[23] = 'Images/023.jpg'
Picture[24] = 'Images/024.jpg'
Picture[25] = 'Images/025.jpg'
Picture[26] = 'Images/026.jpg'
Picture[27] = 'Images/027.jpg'
Picture[28] = 'Images/028.jpg'
Picture[29] = 'Images/029.jpg'
Picture[30] ='Images/030.jpg'
Picture[31] = 'Images/031.jpg'
Picture[32] = 'Images/032.jpg'
Picture[33] = 'Images/033.jpg'
Picture[34] = 'Images/034.jpg'
Picture[35] = 'Images/035.jpg'

// Specify the Captions... // To add more captions, just continue the pattern, adding to the array below.

Caption[1]  = "Make it your Business";//Keep the number of Captions equal the number of Pictures!
Caption[2]  = "Be Paid by Anyone Worldwide";
Caption[3]  = "Join us Today";
Caption[4]  = "Get Worldwide Business";
Caption[5]  = "This is Your Opportunity";
Caption[6]  = "Get Registered Now";
Caption[7]  = "Transfer Funds with No Effort";
Caption[8]  = "See what Others Did";
Caption[9]  = "Make Additional Income";
Caption[10] = "Pay to Anyone Worldwide";
Caption[11]  = "Make it your Business";//Keep the number of Captions equal the number of Pictures!
Caption[12]  = "Be Paid by Anyone Worldwide";
Caption[13]  = "Join us Today";
Caption[14]  = "Get Worldwide Business";
Caption[15]  = "This is Your Opportunity";
Caption[16]  = "Get Registered Now";
Caption[17]  = "Transfer Funds with No Effort";
Caption[18]  = "See what Others Did";
Caption[19]  = "Make Additional Income";
Caption[20] = "Pay to Anyone Worldwide";
Caption[21]  = "Make it your Business";
Caption[22]  = "Be Paid by Anyone Worldwide";
Caption[23]  = "Join us Today";
Caption[24]  = "Get Worldwide Business";
Caption[25]  = "This is Your Opportunity";
Caption[26]  = "Get Registered Now";
Caption[27]  = "Transfer Funds with No Effort";
Caption[28]  = "See what Others Did";
Caption[29]  = "Make Additional Income";
Caption[30] = "Pay to Anyone Worldwide";
Caption[31]  = "Make it your Business";//Keep the number of Captions equal the number of Pictures!
Caption[32]  = "Be Paid by Anyone Worldwide";
Caption[33]  = "Join us Today";
Caption[34]  = "Get Worldwide Business";
Caption[35]  = "This is Your Opportunity";

// =====================================
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}
// =====================================
function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

function pviiClassNew(obj, new_style) { //v2.7 by PVII
  obj.className=new_style;
}


/* ----------------------------------------------*/




