// (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 = 3000// Duration of crossfade (seconds)var crossFadeDuration = 3// Specify the image filesvar SlideShowPic = new Array(); // don't touch thisvar ClubSlideShowPic = new Array(); // don't touch this// to add more images, just continue// the pattern, adding to the array below// =======================================// do not edit anything below this line// =======================================var t;var j_ClubSlideShow = 0;var j_SlideShow = 0;var preLoad;var p;function preload(img_id){//	var Pic = SlideShowPic.length;	var Pic = eval(img_id+"Pic");	p = Pic.length;	preLoad = new Array();	for (i = 0; i < p; i++){		if(Pic[i] == "" || Pic[i] == undefined)			continue;	   preLoad[i] = new Image();	   preLoad[i].src = Pic[i];	}}function runSlideShow(img_id){	if(img_id == undefined)		return;	var j = eval("j_"+img_id);	if(document.getElementById(img_id) == undefined)	{		return;	}	preload(img_id);	if (preLoad.length == 0)	{		return;	}   if (document.all){      document.getElementById(img_id).style.filter="blendTrans(duration=2)";      document.getElementById(img_id).style.filter="blendTrans(duration=crossFadeDuration)";      document.getElementById(img_id).filters.blendTrans.Apply();   }   while(preLoad[j] == undefined || preLoad[j].src == "")   {	   j = j + 1;	   if (j > (p-1)) j=0;   }   document.getElementById(img_id).src = preLoad[j].src;   if (document.all){      document.getElementById(img_id).filters.blendTrans.Play();   }   j = j + 1;   if (j > (p-1)) j=0;	eval("j_"+img_id+" = "+j);   t = setTimeout('runSlideShow("'+img_id+'")', slideShowSpeed);}