<!-- 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 slideShowSpeed = 4500;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic1 = new Array();
// to add more images, just continue
// the pattern, adding to the array below
// Pic1 - slideshow1, Pic2 - slideshow2
Pic1[0] = 'new_products/1.jpg'
Pic1[1] = 'new_products/2.jpg'
Pic1[2] = 'new_products/3.jpg'
Pic1[3] = 'new_products/4.jpg'

var Pic1_links = new Array();
Pic1_links[0] = 'new_products.htm'
Pic1_links[1] = 'new_products.htm#IDS-CP'
Pic1_links[2] = 'new_products.htm#JAI-800CL'
Pic1_links[3] = 'new_products.htm#AVT-GX-1920'

var t1;
var j1 = 0;
var p1 = Pic1.length;
var currentImageIndex1 = 0;
var preLoad1 = new Array();
for (i1 = 0; i1 < p1; i1++) {
preLoad1[i1] = new Image();
preLoad1[i1].src = Pic1[i1];
}
function runSlideShow1() {
if (document.all) {
document.images.SlideShow1.style.filter="blendTrans(duration=2)";
document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow1.filters.blendTrans.Apply();
}
document.images.SlideShow1.src = preLoad1[j1].src;
currentImageIndex1 = j1;
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
j1 = j1 + 1;
if (j1 > (p1 - 1)) j1 = 0;
t = setTimeout('runSlideShow1()', 4000);
}

// Link code for slideshow 1
function show1_link()
{
 window.location = Pic1_links[currentImageIndex1];

}


//  End -->

