var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [245, 235], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		//["http://www.ville-cesson-sevigne.fr/test/8.jpg", "news/319/91/Fest-Noz-Supelec.html", "xcvxc", "&nbsp<strong>Fest-Noz </strong><br />&nbsp;Samedi 13"],
		//["http://www.ville-cesson-sevigne.fr/test/12.jpg", "http://www.ville-cesson-sevigne.fr/news/367/91/Yannick-Jaulin-Atelier-du-dodo-2.html", "xcvxc", "&nbsp<strong>Yannick Jaulin</strong><br />&nbsp;Vendredi 5 mars"],
		["http://www.ville-cesson-sevigne.fr/test/15.jpg", "news/370/91/Passez-commande-des-maintenant.html", "xcvxc", "&nbsp<strong>BIP BIP LECTURE</strong><br />&nbsp;Gratuit !!"],
		["http://www.ville-cesson-sevigne.fr/test/11.jpg", "a-la-une/mars-au-feminin.html", "xcvxc", "&nbsp<strong>MARS AU FEMININ</strong><br />&nbsp;Le programme"],
		["http://www.ville-cesson-sevigne.fr/test/9.jpg", "news/313/91/Forum-Liberation.html", "xcvxc", "&nbsp<strong>Forum</strong><br />&nbsp;26 et 27 mars"]
	],
	autoplay: [true, 2500, 1], //[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)
	}
})


