
// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 5000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var newwindow = 0 //open links in new window? 1=yes, 0=no

var Picture = new Array();
var Caption = new Array(); 
var Links = new Array();

Picture[1]  = '/aec/images/main_common/Common-LA-Allstars.jpg';
Picture[2]  = '/aec/images/main_common/Common-Big-City-Revue.jpg';
Picture[3]  = '/aec/images/main_common/Common-Masterpiece.jpg';
Picture[4]  = '/aec/images/main_common/Common-Liquid-Blue.jpg';
Picture[5]  = '/aec/images/main_common/Common-Rhythm-Extreme.jpg';
Picture[6]  = '/aec/images/main_common/Common-Venetian-Masquerade.jpg';
Picture[7]  = '/aec/images/main_common/Common-Wine-Goddess-&-Baccus.jpg';
Picture[8]  = '/aec/images/main_common/Common-Beach-Boys.jpg';
Picture[9]  = '/aec/images/main_common/Common-Dave-Martins-House-Party.jpg';
Picture[10]  = '/aec/images/main_common/Common-Interwoven-Hawaii.jpg';
Picture[11]  = '/aec/images/main_common/Common-Kansas.jpg';
Picture[12]  = '/aec/images/main_common/Common-Hip-Service.jpg';
Picture[13]  = '/aec/images/main_common/Common-Big-City-Orchestra.jpg';
Picture[14]  = '/aec/images/main_common/Common-Net-Market-Makers.jpg';
Picture[15]  = '/aec/images/main_common/Common-Penn-&-Teller.jpg';
Picture[16]  = '/aec/images/main_common/Common-Gentry-Magazine-2001.jpg';
Picture[17]  = '/aec/images/main_common/Common-Rhythm-Nation.jpg';
Picture[18]  = '/aec/images/main_common/Common-BB-King.jpg';
Picture[19]  = '/aec/images/main_common/Common-Interwoven.jpg';
Picture[20]  = '/aec/images/main_common/Common-Vandela-Kirsebom.jpg';
Picture[21]  = '/aec/images/main_common/Common-Tibco-2001b.jpg';
Picture[22]  = '/aec/images/main_common/Common-ZZ-Top.jpg';
Picture[23]  = '/aec/images/main_common/Common-Tibco-2001.jpg';
Picture[24]  = '/aec/images/main_common/Common-Encore.jpg';
Picture[25]  = '/aec/images/main_common/Common-New-United-Motors-Manufacturing-International.jpg';
Picture[26]  = '/aec/images/main_common/Common-Club-IW.jpg';

Caption[1]  = "LA Allstars";
Caption[2]  = "Big City Revue";
Caption[3]  = "Masterpiece";
Caption[4]  = "Liquid-Blue";
Caption[5]  = "Rhythm Extreme";
Caption[6]  = "Venetian Masquerade";
Caption[7]  = "Wine Goddess & Baccus";
Caption[8]  = "Beach Boys";
Caption[9]  = "David Martins House Party";
Caption[10]  = "Interwoven Hawaii";
Caption[11]  = "Kansas";
Caption[12]  = "Hip Service";
Caption[13]  = "Big City Orchestra";
Caption[14]  = "Net Market Makers";
Caption[15]  = "Penn & Teller";
Caption[16]  = "Gentry Magazine 2001";
Caption[17]  = "Rhythm Nation";
Caption[18]  = "BB King";
Caption[19]  = "Interwoven";
Caption[20]  = "Vandela Kirsebom";
Caption[21]  = "Tibco 2001";
Caption[22]  = "ZZ Top";
Caption[23]  = "Tibco 2001";
Caption[24]  = "Encore";
Caption[25]  = "New United Motors Manufacturing International";
Caption[26]  = "Club IW";

Links[1]  = "";
Links[2]  = "";
Links[3]  = "";
Links[4]  = "";
Links[5]  = "";
Links[6]  = "";
Links[7]  = "";
Links[8]  = "";
Links[9]  = "";
Links[10]  = "";
Links[11]  = "";
Links[12]  = "";
Links[13]  = "";
Links[14]  = "";
Links[15]  = "";
Links[16]  = "";
Links[17]  = "";
Links[18]  = "";
Links[19]  = "";
Links[20]  = "";
Links[21]  = "";
Links[22]  = "";
Links[23]  = "";
Links[24]  = "";
Links[25]  = "";
Links[26]  = "";

var tss;
var iss;
var lss;
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();
lss = jss;
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

function gotoshow(){
if (newwindow)
window.open(Links[lss])
else
window.location=Links[lss]
}



