var lk2;
lk2=0;
var Links2 = new Array();
var tip2 = new Array();


tip2[0] ='';
tip2[1] ='';
tip2[2] ='';
tip2[3] ='';
tip2[4] ='';
tip2[5] ='';
tip2[6] ='';
tip2[7] ='';



function tooltip2()
{
document.images.SlideShow2.title= tip2[lk2];
}

function test()
{
var win2=window.location(Links2[lk2]);
}
var slideShowSpeed2 = 4500;
var crossFadeDuration2 = 3;
var Pic2 = new Array();

Pic2[0] = 'images/img1a.jpg'
Pic2[1] = 'images/img2a.jpg'
Pic2[2] = 'images/img3a.jpg'
Pic2[3] = 'images/img4a.jpg'
Pic2[4] = 'images/img5a.jpg'
Pic2[5] = 'images/img6a.jpg'
Pic2[6] = 'images/img7.jpg'
Pic2[7] = 'images/img8.jpg'




var t2;
var j2 = 0;
var p2 = Pic2.length;

var preLoad2 = new Array();

for (i2 = 0; i2 < p2; i2++) 
{
preLoad2[i2] = new Image();
preLoad2[i2].src = Pic2[i2];
}

function runSlideShow2() 
{
if (document.all) 
{
document.images.SlideShow2.style.filter="blendTrans(duration=2)";
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration2)";
document.images.SlideShow2.filters.blendTrans.Apply();
}
lk2=j2;
document.images.SlideShow2.src = preLoad2[j2].src;
tooltip2();
if (document.all) 
{
document.images.SlideShow2.filters.blendTrans.Play();
}
t = setTimeout('runSlideShow2()', slideShowSpeed2);
j2 = j2 + 1;
if (j2 > (p2 - 1)) j2 = 0;
}


