var mygallery1=new simpleGallery({
	wrapperid: "photos_1", //ID of main gallery container,
	dimensions: [400, 290], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/bootcamp2005_1.jpg", "", "", "Bootcamp Spring 2005"],
		["images/bootcamp2005_2.jpg", "", "", ""],
		["images/bootcamp2005_3.jpg", "", "", ""],
		["images/bootcamp2005_4.jpg", "", "", ""],
		["images/bootcamp2005_5.jpg", "", "", ""],
		["images/bootcamp2005_6.jpg", "", "", ""],
		["images/bootcamp2005_7.jpg", "", "", ""]
	],
	autoplay: [false, 2500, 2], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	oninit:function(){ //event that fires when gallery has initialized/ ready to run
		//Keyword "this": references current gallery instance (ie: try this.navigate("play/pause"))
	},
	onslide:function(curslide, i){ //event that fires after each slide is shown
		//Keyword "this": references current gallery instance
		//curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
		//i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
	}
})

var mygallery2=new simpleGallery({
	wrapperid: "photos_2", //ID of main gallery container,
	dimensions: [461, 295], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/bcf2005_1.jpg", "", "", "Bootcamp Fall 2005"],
		["images/bcf2005_2.jpg", "", "", ""],
		["images/bcf2005_3.jpg", "", "", ""],
		["images/bcf2005_4.jpg", "", "", ""],
		["images/bcf2005_5.jpg", "", "", ""],
		["images/bcf2005_6.jpg", "", "", ""]
	],
	autoplay: [false, 2500, 2], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	oninit:function(){ //event that fires when gallery has initialized/ ready to run
		//Keyword "this": references current gallery instance (ie: try this.navigate("play/pause"))
	},
	onslide:function(curslide, i){ //event that fires after each slide is shown
		//Keyword "this": references current gallery instance
		//curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
		//i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
	}
})

var mygallery3=new simpleGallery({
	wrapperid: "photos_3", //ID of main gallery container,
	dimensions: [397, 295], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/bgf2005_1.jpg", "", "", "Belt Grading Fall 2005"],
		["images/bgf2005_2.jpg", "", "", ""],
		["images/bgf2005_3.jpg", "", "", ""],
		["images/bgf2005_4.jpg", "", "", ""],
		["images/bgf2005_5.jpg", "", "", ""],
		["images/bgf2005_6.jpg", "", "", ""],
		["images/bgf2005_7.jpg", "", "", ""],
		["images/bgf2005_8.jpg", "", "", ""],
		["images/bgf2005_9.jpg", "", "", ""],
		["images/bgf2005_10.jpg", "", "", ""],
		["images/bgf2005_11.jpg", "", "", ""],
		["images/bgf2005_12.jpg", "", "", ""],
		["images/bgf2005_13.jpg", "", "", ""],
		["images/bgf2005_14.jpg", "", "", ""]
	],
	autoplay: [false, 2500, 2], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	oninit:function(){ //event that fires when gallery has initialized/ ready to run
		//Keyword "this": references current gallery instance (ie: try this.navigate("play/pause"))
	},
	onslide:function(curslide, i){ //event that fires after each slide is shown
		//Keyword "this": references current gallery instance
		//curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
		//i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
	}
})


