// JavaScript Document
var mygallery=new fadeSlideShow({
	wrapperid: "cont_rotate", //ID of blank DIV on page to house Slideshow
	dimensions: [770, 308], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		[BASE_URL+"images/int1_img1.png"],
		[BASE_URL+"images/int1_img2.png"],
		[BASE_URL+"images/int1_img3.png"],
		[BASE_URL+"images/int1_img4.png"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:2500, cycles:1, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: "",
	onslide:function(curimage,index) {
		if (index == 3) {
			setTimeout('document.location = \'about.php\'',2000)	
		}
	}
});


