// itrimming.com

var slideShowSpeed = 5000; // set 10 times longer as it is a animation gif
var crossFadeDuration = 2;

var idx = 0;

var Pic1 = new Array();
Pic1[0] = "http://site.itrimming.com/template/it_freeship_20080709.jpg";

var Links = new Array();
Links[0] = "index.html";

// do not edit anything below this line
var t;
var j = 0;
var p1 = Pic1.length;
var preLoad1 = new Array();
for (i = 0; i < p1; i++) {
	preLoad1[i] = new Image();
	preLoad1[i].src = Pic1[i];
}
function runSlideShow() {
	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[j].src;
	idx = j;
	if (document.all) {
		document.images.SlideShow1.filters.blendTrans.Play();
	}
	j = j + 1;
	if (j > (p1 - 1)) j = 0;
	t = setTimeout('runSlideShow()', slideShowSpeed);
}
function bannerClicked() {
    window.location.href=Links[idx];
}