/* build banner swap script */

var imgs = new Array(); var links = new Array();
var imgcnt = 0; var thisimg = 0;

/*links[imgcnt] = '';*/
imgs[imgcnt++] = 'images\/homeImage5.jpg';
/*links[imgcnt] = '';*/
imgs[imgcnt++] = 'images\/homeImage1.jpg';
/*links[imgcnt] = '';*/
imgs[imgcnt++] = 'images\/homeImage2.jpg';
/*links[imgcnt] = '';*/
imgs[imgcnt++] = 'images\/homeImage6.jpg';



function rotate() {
	if (document.getElementById) {
		thisimg++;
		if (thisimg >= imgcnt) thisimg = 0; {
			
			if(navigator.appName == "Microsoft Internet Explorer") {
				
				//fade images in & out
				document.getElementById('rollimg').style.filter="blendTrans(duration=2)";
				//document.images.rollimg.style.filter="blendTrans(duration=2)"
				document.getElementById('rollimg').style.filter="blendTrans(duration=3)";
				document.getElementById('rollimg').filters.blendTrans.Apply();
				document.getElementById('rollimg').src = imgs[thisimg];
				document.getElementById('rollimg').filters.blendTrans.Play();
				
			} else {
				//change images
				document.getElementById('rollimg').src = imgs[thisimg];
			}
			
			if(links[thisimg] != '') {
				document.getElementById('rollimg').style.cursor='pointer';
			} else {
				document.getElementById('rollimg').style.cursor='default';
			}
			//cursor();
			//
			//document.rollimg.src = imgs[thisimg];
			setTimeout("rotate();",8000);
		}
	}
}

function setURL(){ 
        
        if ( links[thisimg] !="" ) window.location.href = links[thisimg]; 

} 

setTimeout("rotate();",8000);