// (C) 2000 www.CodeLifter.com // http://www.codelifter.com // Free for all users, but leave in this header // NS4-6,IE4-6 // Fade effect only in IE; degrades gracefully // ======================================= // set the following variables // ======================================= // Set slideShowSpeed (milliseconds) var slideShowSpeed = 5000 // Duration of crossfade (seconds) var crossFadeDuration = 4 // Specify the image files // to add more images, just continue // the pattern, adding to the array below // ======================================= // do not edit anything below this line // ======================================= var t var j = 0 var p = Pic.length var preLoad = new Array() function clear(count) { for (i = 0; i < count; i++) { var headerimage = document.getElementById('home_header_images'+i) if (headerimage) { headerimage.style.visibility="hidden"; } } } function run_slide_show(count) { if (count>0){ clear(count); var headerimage = document.getElementById('home_header_images'+j) if (headerimage) { headerimage.style.visibility="visible"; } j = j + 1; if (j > (p-1)) j=0 t = setTimeout('run_slide_show('+count+')', slideShowSpeed) } } function init_slide_show(count) { run_slide_show(count); }