<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeedLpg = 8000;
// Duration of crossfade (seconds)
var crossFadeDurationLpg = 10;
// Specify the image files
var PicLpg = new Array();
// to add more images, just continue
// the pattern, adding to the array below


//PicLpg[0] = 'images/Header_ConsProd.jpg'
//PicLpg[1] = 'images/Header_ALLProd.jpg'


// do not edit anything below this line
var tLpg;
var jLpg = 0;
var pLpg = PicLpg.length;
var preLoadLpg = new Array();


function LoadHeroImages(){

	pLpg = PicLpg.length;

	for (iLpg = 0; iLpg < pLpg; iLpg++) {
	preLoadLpg[iLpg] = new Image();
	preLoadLpg[iLpg].src = PicLpg[iLpg];
	}

}
function runSlideShowLpg() {
if(pLpg>0){
if (document.all) {
document.images.SlideShowLpg.style.filter="blendTrans(duration=2)";
document.images.SlideShowLpg.style.filter="blendTrans(duration=crossFadeDurationLpg)";
document.images.SlideShowLpg.filters.blendTrans.Apply();
}
document.images.SlideShowLpg.src = preLoadLpg[jLpg].src;
if (document.all) {
document.images.SlideShowLpg.filters.blendTrans.Play();
}
jLpg = jLpg + 1;
if (jLpg > (pLpg - 1)) jLpg = 0;
tLpg = setTimeout('runSlideShowLpg()', slideShowSpeedLpg);
}
}
// 