<!--
document.writeln("<script language=\"javascript\" type=\"text/javascript\">");
document.writeln("// (C) 2002 www.CodeLifter.com");
document.writeln("// http://www.codelifter.com");
document.writeln("// Set the slideshow speed (in milliseconds)");
document.writeln("var SlideShowSpeed = 3000;");
document.writeln("");
document.writeln("// Set the duration of crossfade (in seconds)");
document.writeln("var CrossFadeDuration = 3;");
document.writeln("");
document.writeln("var Picture = new Array(); // don't change this");
document.writeln("var Caption = new Array(); // don't change this");
document.writeln("");
document.writeln("Picture[1] = '/digitalsignage/images/Image001.jpg';");
document.writeln("Picture[2] = '/digitalsignage/images/Image002.jpg';");
document.writeln("Picture[3] = '/digitalsignage/images/Image003.jpg';");
document.writeln("Picture[4] = '/digitalsignage/images/Image004.jpg';");
document.writeln("Picture[5] = '/digitalsignage/images/Image005.jpg';");
document.writeln("Picture[6] = '/digitalsignage/images/Image006.jpg';");
document.writeln("Picture[7] = '/digitalsignage/images/Image007.jpg';");
document.writeln("Picture[8] = '/digitalsignage/images/Image008.jpg';");
document.writeln("Picture[9] = '/digitalsignage/images/Image009.jpg';");
document.writeln("Picture[10] = '/digitalsignage/images/Image010.jpg';");
document.writeln("");
document.writeln("Caption[1] = \"\";");
document.writeln("Caption[2] = \"\";");
document.writeln("Caption[3] = \"\";");
document.writeln("Caption[4] = \"\";");
document.writeln("Caption[5] = \"\";");
document.writeln("Caption[6] = \"\";");
document.writeln("Caption[7] = \"\";");
document.writeln("Caption[8] = \"\";");
document.writeln("Caption[9] = \"\";");
document.writeln("Caption[10] = \"\";");
document.writeln("");
document.writeln("var tss;");
document.writeln("var iss;");
document.writeln("var jss = 1;");
document.writeln("var pss = Picture.length-1;");
document.writeln("");
document.writeln("var preLoad = new Array();");
document.writeln("for (iss = 1; iss < pss+1; iss++){");
document.writeln("preLoad[iss] = new Image();");
document.writeln("preLoad[iss].src = Picture[iss];}");
document.writeln("");
document.writeln("function runSlideShow(){");
document.writeln("if (document.all){");
document.writeln("document.images.PictureBox.style.filter=\"blendTrans(duration=2)\";");
document.writeln("document.images.PictureBox.style.filter=\"blendTrans(duration=CrossFadeDuration)\";");
document.writeln("document.images.PictureBox.filters.blendTrans.Apply();}");
document.writeln("document.images.PictureBox.src = preLoad[jss].src;");
document.writeln("if (document.getElementById) document.getElementById(\"CaptionBox\").innerHTML= Caption[jss];");
document.writeln("if (document.all) document.images.PictureBox.filters.blendTrans.Play();");
document.writeln("jss = jss + 1;");
document.writeln("if (jss > (pss)) jss=1;");
document.writeln("tss = setTimeout('runSlideShow()', SlideShowSpeed);");
document.writeln("}");
document.writeln("");
document.writeln("</script\>");
//-->
