var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/pic_1.gif", "", ""],
		["images/pic_2.gif", "", ""],
		["images/pic_3.gif", "", ""],
		["images/pic_4.gif", "", ""],
		["images/pic_5.gif", "", ""],
		["images/pic_6.gif", "", ""],
		["images/pic_7.gif", "", ""],
	    ["images/pic_8.gif", "", ""],
		["images/pic_9.gif", "", ""],
		["images/pic_10.gif", "", ""]
	],
	autoplay: true,
	persist: false,
	pause: 2500, //pause between slides (milliseconds)
	fadeduration: 500, //transition duration (milliseconds)
	oninit:function(){ //event that fires when gallery has initialized/ ready to run
	},
	onslide:function(curslide, i){ 
	}
}
)
