// JavaScript Document
var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [200, 160], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["/images/customers/deltatemp.gif", "http://www.delta-temp.com", "_new", "Delta Temp"],
		["/images/customers/faceo.gif", "http://www.faceo.be", "_new", "Faceo Belgium NV"],
		["/images/customers/moneybe.gif", "http://www.money.be", "_new", "Money.be"],
		["/images/customers/text-it.gif", "http://www.text-it.be", "_new", "A.W. Text-It"],
		["/images/customers/kipeo.gif", "http://www.kipeo.be", "_new", "Kipeo Cycling Team wear"],
		["/images/customers/teamec.gif", "http://www.teamec.be", "_new", "Teamec BVBA"],
		["/images/customers/hopasport.gif", "http://www.hopasport.be", "_new", "Hopa Sport"],
		["/images/customers/gunterbosmans.gif", "http://www.gunterbosmans.be", "_new", "Gunter Bosmans BVBA"],
		["/images/customers/denayer.gif", "http://www.denayer.be", "_new", "Denayer"],
		["/images/customers/bambootravel.gif", "http://www.bamboo-travel.be", "_new", "Reisburo Bamboo Travel"]
	],
	autoplay: [true, 2500, 1000], //[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)
	}
})