
<!-- 
// ============================== 
// Set the following variables... 
// ==============================
// Set the slideshow speed (in milliseconds) 
var SlideShowSpeed = 6000; // used for left side
var SlideShowSpeed2 = 7000;  // used for right side
// Set the duration of crossfade (in seconds) 
var CrossFadeDuration = 3;
var Picture = new Array();  // don't change this 
var Caption = new Array();  // don't change this
var Picture2 = new Array(); // don't change this 
var Caption2 = new Array(); // don't change this
// Specify the image files... 
// To add more images, just continue 
// the pattern, adding to the array below. 
// To use fewer images, remove lines 
// starting at the end of the Picture array. 
// Caution: The number of Pictures *must* 
// equal the number of Captions!
Picture[1]  = 'slides/gift_cards.gif';
Picture[2]  = 'slides/game_worn_jerseys.gif';
Picture2[1]  = 'slides/2010schedule.gif';
Picture2[2]  = 'slides/holiday_party.gif';
// Specify the Captions... <a href='http://www.whitecapsbaseball.com/TICKETS/textpage.html'>Whitecaps Text Club</a>
// To add more captions, just continue 
// the pattern, adding to the array below. 
// To use fewer captions, remove lines 
// starting at the end of the Caption array. 
// Caution: The number of Captions *must* 
// equal the number of Pictures!
Caption[1] = "<div class='captionSelected'><a href='http://www.whitecaps-baseball.com/TICKETS/giftcard.html'>Gift Cards</a></div><a href='http://www.what-if.com/SECURE/whitecaps2/index.php?main_page=index&cPath=8&zenid=fe2416a5ae744a913e13f619a31f6370'>Game Worn Jerseys</a>"
Caption[2] = "<a href='http://www.whitecaps-baseball.com/TICKETS/giftcard.html'>Gift Cards</a><div class='captionSelected'><a href='http://www.what-if.com/SECURE/whitecaps2/index.php?main_page=index&cPath=8&zenid=fe2416a5ae744a913e13f619a31f6370'>Game Worn Jerseys</a></div>"
Caption2[1]  = "<div class='captionSelected'><a href='http://www.whitecaps-baseball.com/BLOGS/?p=966'>2010 Schedule Release</a></div><a href='http://www.whitecaps-baseball.com/BALLPARK/outsideevents.html#stadium_club'>Holiday Parties</a>"
Caption2[2]  = "<a href='http://www.whitecaps-baseball.com/BLOGS/?p=966'>2010 Schedule Release</a><div class='captionSelected'><a href='http://www.whitecaps-baseball.com/BALLPARK/outsideevents.html#stadium_club'>Holiday Parties</a></div>"
// ===================================== 
// Do not edit anything below this line! 
//======================================
var tss; var iss; 
var jss = 1; 
var pss = 2;  // change only to match the number of slide pix used on the left
var tss2; 
var iss2; 
var jss2 = 1; 
var pss2 = 2;  // change only to match the number of slide pix used on the right
var preLoad = new Array(); 
for (iss = 1; iss < pss+1; iss++){ 
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];
}
var preLoad2 = new Array(); 
for (iss2 = 1; iss2 < pss2+1; iss2++){ 
preLoad2[iss2] = new Image();
preLoad2[iss2].src = Picture2[iss2];
}
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 runSlideShow2(){ if (document.all){
	document.images.PictureBox2.style.filter="blendTrans(duration=2)";
	document.images.PictureBox2.style.filter="blendTrans(duration=CrossFadeDuration)";
	document.images.PictureBox2.filters.blendTrans.Apply();
} 
document.images.PictureBox2.src = preLoad2[jss2].src; 
if (document.getElementById) document.getElementById("CaptionBox2").innerHTML=Caption2[jss2]; 
if (document.all) document.images.PictureBox2.filters.blendTrans.Play(); 
jss2 = jss2 + 1; 
if (jss2 > (pss2)) jss2=1; 
	tss2 = setTimeout('runSlideShow2()', SlideShowSpeed2); 
}
//-->

