var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [750, 200], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["images/last.png", "", ""],
		["images/economy.png", "http://www.hostmurah.com/whmcs/cart.php", ""],
		["images/basic.png", "http://www.hostmurah.com/whmcs/cart.php", ""],
		["images/business.png", "http://www.hostmurah.com/whmcs/cart.php", ""]
	],
	autoplay: true,
	persist: false,
	pause: 3000, //pause between slides (milliseconds)
	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
		//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)
	}
})