// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 8000;

// 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


Picture[1]  = './_images/index/img_electro.jpg';
Picture[2]  = './_images/index/img_fabricfilter.jpg';
Picture[3]  = './_images/index/img_spraydryer.jpg';
Picture[4]  = './_images/index/img_replacement.jpg';
Picture[5]  = './_images/index/img_sorbent-injection-system.jpg';

Caption[1]='<b>Electrostatic Precipitators:</b><br/><b>The Clyde Bergemann EEC</b> precipitator incorporates state of the art technology design elements.<br /><a href="./products/esp.htm">More &gt;</a>';

Caption[2]='<b>Fabric Filters:</b><br/><b>Clyde Bergemann EEC</b> offers both Top Door and Walk-in Plenum type Pulse-Jet Fabric Filter Systems.<br /><a href="./products/fabric_filters.htm">More &gt;</a>';

Caption[3]='<b>Dry Scrubbing Systems:</b><br/><b>Clyde Bergemann EEC</b> offers Spray Dryer Absorber (SDA) systems for Coal fired boilers and waste incinerators.<br /><a href="./products/dry_scrubbing.htm">More &gt;</a>';

Caption[4]='<b>Replacement Parts & Services:</b><br/><b>Clyde Bergemann EEC</b> maintains an extensive inventory of critical spare parts for our equipment as well as major competitors designs.<br /><a href="./products/replacement.htm">More &gt;</a>';

Caption[5]='<b>Sorbent Injection:</b><br/><STRONG>CBEECs</STRONG> injection technology combines low capital cost together with low operating costs to deliver a reliable, cost effective method for reducing pollutants, such as acid gasses, mercury, and other heavy metals.<BR><a href="./products/sorbent_injection.htm">More &gt;</a>';
// =====================================
// 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);
}

