<!--
// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com

var SlideShowSpeedtwo = 8000;
var CrossFadeDurationtwo = 3;
var PictureTwo = new Array(); 

PictureTwo[1]  = 'images/slideshow_home_center_01.jpg';
PictureTwo[2]  = 'images/slideshow_home_center_02.jpg';
PictureTwo[3]  = 'images/slideshow_home_center_03.jpg';

var tsstwo;
var isstwo;
var jsstwo = 1;
var psstwo = PictureTwo.length-1;

var preLoadtwo = new Array();
for (isstwo = 1; isstwo < psstwo+1; isstwo++){
preLoadtwo[isstwo] = new Image();
preLoadtwo[isstwo].src = PictureTwo[isstwo];}

function runSlideShowTwo(){
if (document.all){
document.images.PictureBoxTwo.style.filter="blendTrans(duration=2)";
document.images.PictureBoxTwo.style.filter="blendTrans(duration=CrossFadeDurationtwo)";
document.images.PictureBoxTwo.filters.blendTrans.Apply();}
document.images.PictureBoxTwo.src = preLoadtwo[jsstwo].src;
if (document.all) document.images.PictureBoxTwo.filters.blendTrans.Play();
jsstwo = jsstwo + 1;
if (jsstwo > (psstwo)) jsstwo=1;
tsstwo = setTimeout('runSlideShowTwo()', SlideShowSpeedtwo);
}
//-->