var mygallery1=new simpleGallery({
	wrapperid: "photos_1", //ID of main gallery container,
	dimensions: [372, 271], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/yb2006_1.jpg", "", "", "January Yellow Belt Grading"],
		["images/yb2006_2.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: [370, 267], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/2006_cv_1.jpg", "", "", "Sensei Chris Luttrell visits Musubi Dojo"],
		["images/2006_cv_2.jpg", "", "", ""],
		["images/2006_cv_3.jpg", "", "", ""],
		["images/2006_cv_4.jpg", "", "", ""],
		["images/2006_cv_5.jpg", "", "", ""],
		["images/2006_cv_6.jpg", "", "", ""],
		["images/2006_cv_7.jpg", "", "", ""],
		["images/2006_cv_8.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: [400, 294], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/vsc1.gif", "", "", "Visitors from South Carolina's Master Kim's Tae Kwon Do Dojang"],
		["images/vsc2.gif", "", "", ""],
		["images/vsc3.gif", "", "", ""]
	],
	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 mygallery4=new simpleGallery({
	wrapperid: "photos_4", //ID of main gallery container,
	dimensions: [371, 273], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/sbc2006_1.jpg", "", "", "Spring Boot Camp 2006"],
		["images/sbc2006_2.jpg", "", "", ""],
		["images/sbc2006_3.jpg", "", "", ""],
		["images/sbc2006_4.jpg", "", "", ""],
		["images/sbc2006_5.jpg", "", "", ""],
		["images/sbc2006_6.jpg", "", "", ""],
		["images/sbc2006_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 mygallery5=new simpleGallery({
	wrapperid: "photos_5", //ID of main gallery container,
	dimensions: [400, 265], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/bgj2006_1.gif", "", "", "Belt Grading June 2006"],
		["images/bgj2006_2.gif", "", "", ""],
		["images/bgj2006_3.gif", "", "", ""],
		["images/bgj2006_4.gif", "", "", ""],
		["images/bgj2006_5.gif", "", "", ""],
		["images/bgj2006_6.gif", "", "", ""],
		["images/bgj2006_7.gif", "", "", ""],
		["images/bgj2006_8.gif", "", "", ""],
		["images/bgj2006_9.gif", "", "", ""],
		["images/bgj2006_10.gif", "", "", ""]
	],
	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 mygallery6=new simpleGallery({
	wrapperid: "photos_6", //ID of main gallery container,
	dimensions: [400, 355], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/csit1.gif", "", "", "June Chokushin/Shorinjikan Interclub Training"],
		["images/csit2.gif", "", "", ""],
		["images/csit3.gif", "", "", ""],
		["images/csit4.gif", "", "", ""],
		["images/csit5.gif", "", "", ""]
	],
	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 mygallery7=new simpleGallery({
	wrapperid: "photos_7", //ID of main gallery container,
	dimensions: [462, 263], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/classtrain20060711_1.jpg", "", "", "July 11 Class Training"],
		["images/classtrain20060711_2.jpg", "", "", ""],
		["images/classtrain20060711_3.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 mygallery8=new simpleGallery({
	wrapperid: "photos_8", //ID of main gallery container,
	dimensions: [356, 263], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/ybg1.gif", "", "", "July Grading"],
		["images/ybg2.gif", "", "", ""],
		["images/ybg3.gif", "", "", ""],
		["images/ybg4.gif", "", "", ""]
	],
	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 mygallery9=new simpleGallery({
	wrapperid: "photos_9", //ID of main gallery container,
	dimensions: [400, 265], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/bwbgrading_1.gif", "", "", "August Brown Belt Grading"],
		["images/bwbgrading_2.gif", "", "", ""],
		["images/bwbgrading_3.gif", "", "", ""],
		["images/bwbgrading_4.gif", "", "", ""],
		["images/bwbgrading_5.gif", "", "", ""],
		["images/bwbgrading_6.gif", "", "", ""]
	],
	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 mygallery10=new simpleGallery({
	wrapperid: "photos_10", //ID of main gallery container,
	dimensions: [395, 263], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/budoseek2006_1.gif", "", "", "1st Annual Canadian Friends of Budo Seek Seminar"],
		["images/budoseek2006_2.gif", "", "", ""],
		["images/budoseek2006_3.gif", "", "", ""],
		["images/budoseek2006_4.gif", "", "", ""],
		["images/budoseek2006_5.gif", "", "", ""],
		["images/budoseek2006_6.gif", "", "", ""],
		["images/budoseek2006_7.gif", "", "", ""],
		["images/budoseek2006_8.gif", "", "", ""],
		["images/budoseek2006_9.gif", "", "", ""],
		["images/budoseek2006_10.gif", "", "", ""],
		["images/budoseek2006_11.gif", "", "", ""],
		["images/budoseek2006_12.gif", "", "", ""],
		["images/budoseek2006_13.gif", "", "", ""]
	],
	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 mygallery11=new simpleGallery({
	wrapperid: "photos_11", //ID of main gallery container,
	dimensions: [400, 303], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/bcf2006_1.gif", "", "", "Bootcamp Fall 2006"],
		["images/bcf2006_2.gif", "", "", ""],
		["images/bcf2006_3.gif", "", "", ""],
		["images/bcf2006_4.gif", "", "", ""],
		["images/bcf2006_5.gif", "", "", ""],
		["images/bcf2006_6.gif", "", "", ""],
		["images/bcf2006_7.gif", "", "", ""],
		["images/bcf2006_8.gif", "", "", ""],
		["images/bcf2006_9.gif", "", "", ""],
		["images/bcf2006_10.gif", "", "", ""],
		["images/bcf2006_11.gif", "", "", ""],
		["images/bcf2006_12.gif", "", "", ""]
	],
	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)
	}
})

