// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 5000;
// 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

// 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]  = 'slideshow/al_hassa_saudi.jpg';
Picture[2]  = 'slideshow/babyo_2.jpg';
Picture[3]  = 'slideshow/chemical_small.jpg';
Picture[4]  = 'slideshow/cinem_1.jpg';
Picture[5]  = 'slideshow/hungary_1.jpg';
Picture[6]  = 'slideshow/indiawall1.jpg';
Picture[7]  = 'slideshow/lakewood_1.jpg';
Picture[8]  = 'slideshow/muenchner_kammerspiele_small.jpg';
Picture[9]  = 'slideshow/newvintage3.jpg';
Picture[10]  = 'slideshow/new_caledonia_small_2.jpg';
Picture[11]  = 'slideshow/perpetualmotion2.jpg';
Picture[12]  = 'slideshow/philippines_2.jpg';
Picture[13]  = 'slideshow/plasma5x5_munich.jpg';
Picture[14]  = 'slideshow/sareebazarwall1.jpg';
Picture[15]  = 'slideshow/soundbar_1.jpg';
Picture[16]  = 'slideshow/subway_chile_small.jpg';
Picture[17]  = 'slideshow/veracruz_2.jpg';

// Specify the Captions...
// 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]  = "LCD TV video walls using Brick-2 processors at Al-Hassa and Al-Qassim in Saudi Arabia.";
Caption[2]  = "Amazing 4x5 suspended video wall using a 25-monitor Brick-2 processor in the Baby'O nightclub in Acapulco, Mexico.";
Caption[3]  = "Rear projection video wall using a Brick-1 processor on tour with the Chemical Brothers rock band.";
Caption[4]  = "LCD TV video wall using a Brick-2 processor in the Camus Glam club in the Dominican Republic.";
Caption[5]  = "Large plasma TV video wall using two Brick-2 processors in tandem in Hungarian TV station";
Caption[6]  = "Video wall using Brick-1 processor in Asia's largest Dome theatre in Mumbai, India.";
Caption[7]  = "Brick-2 driving nine Pioneer cubes at Lakewood High School, St. Petersburg, USA.";
Caption[8]  = "Ad-hoc video wall using a Brick-2 driving old TVs at the Muenchner Kammerspiele theatre in Munich, Germany.";
Caption[9]  = "Front projection video wall using a Brick-2 processor at New Vintage Church, Santa Rosa, California.";
Caption[10] = "Rental video wall system by José Miquel in New Caledonia, S. Pacific.";
Caption[11] = "Video wall art creation by Diana Thater, courtesy of the Haunch of Venison gallery, London.";
Caption[12] = "Video wall installation using a Brick-2 to drive low cost LCD TV panels in the Philippines.";
Caption[13] = "Plasma video wall using a 25-monitor Brick-2 processor by XScreen for the MediaMarkt store in Munich, Germany.";
Caption[14] = "CRT video wall in the Saree Bazaar in East London using our Brick-2 processor.";
Caption[15] = "Video projection video wall at the 414 Sound Bar in Minneapolis-USA using a Brick-2 processor.";
Caption[16] = "5x5 plasma video wall using a 25-monitor Brick-2 video wall processor by SUBTV S.A. in Santiago, Chile.";
Caption[17] = "Shopping Mall video wall by Aspinet in Veracruz, Mexico using low cost LCD TV panels.";

// =====================================
// Do not edit anything below this line!
// =====================================

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);
}

