var t_home;
var j_home = 0;
var p_home = Pic_home.length;
var preLoad_home = new Array();
for (i = 0; i < p_home; i++) {
preLoad_home[i] = new Image();
preLoad_home[i].src = Pic_home[i];
}
var webaddress_current_home = '';
var picNum_home = 0;
function runSlideShow_home() {
if (document.all) {
document.images.SlideShow_home.style.filter="blendTrans(duration=2)";
document.images.SlideShow_home.style.filter="blendTrans(duration=crossFadeDuration_home)";
document.images.SlideShow_home.filters.blendTrans.Apply();
}
document.images.SlideShow_home.src = preLoad_home[j_home].src;
document.images.SlideShow_home.alt = altArray_home[j_home];
webaddress_current_home = webaddressArray_home[j_home];
display_code(textArray_home[j_home],'slide_text_home');
picNum_home = j_home;
if (document.all) {
document.images.SlideShow_home.filters.blendTrans.Play();
}
j_home = j_home + 1;
if (j_home > (p_home - 1)) j_home = 0;
t_home = setTimeout('runSlideShow_home()', slideShowSpeed_home);
}
