﻿var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [640, 480], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["image/bassacpic/Pic_1.jpg", "", "", "Show Picture 1"],
		["image/bassacpic/Pic_2.jpg", "", "", "Show Picture 2"],
		["image/bassacpic/Pic_3.jpg", "", "", "Show Picture 3"],
		["image/bassacpic/Pic_4.jpg", "", "", "Show Picture 4"]		
	],
	autoplay: [true, 4000, 10], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 1000, //transition duration (milliseconds)
	oninit:function(){ //event that fires when gallery has initialized/ ready to run
		
	},
	onslide:function(curslide, i){ //event that fires after each slide is shown
		
	}
})

