
// Set slideShowSpeed (milliseconds)
var slideShowSpeed_1 = 7500;
// Duration of crossfade (seconds)
var crossFadeDuration_1 = 1;
// Specify the image files
var Pic_1 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic_1[0] = 'img/carousel_phones/nokiaN82.jpg'
Pic_1[1] = 'img/carousel_phones/blackberryStorm.jpg'
Pic_1[2] = 'img/carousel_phones/iphone.jpg'
Pic_1[3] = 'img/carousel_phones/sonyX1.jpg'
Pic_1[4] = 'img/carousel_phones/samsungOmnia.jpg'
Pic_1[5] = 'img/carousel_phones/htcDiamond.jpg'

////////////////////////////////////////////

var t_1;
var j_1 = 0;
var p_1 = Pic_1.length;
var preLoad_1 = new Array();
for (i_1 = 0; i_1 < p_1; i_1++) {
preLoad_1[i_1] = new Image();
preLoad_1[i_1].src = Pic_1[i_1];
}
function runSlideShow_phones() {
if (document.all) {
document.images.slideshow_phones.style.filter="blendTrans(duration=2)";
document.images.slideshow_phones.style.filter="blendTrans(duration=crossFadeDuration_1)";
document.images.slideshow_phones.filters.blendTrans.Apply();
}
document.images.slideshow_phones.src = preLoad_1[j_1].src;
if (document.all) {
document.images.slideshow_phones.filters.blendTrans.Play();
}
j_1 = j_1 + 1;
if (j_1 > (p_1 - 1)) j_1 = 0;
t_1 = setTimeout('runSlideShow_phones()', slideShowSpeed_1);
}

