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/20.jpg", "a-la-une/cie-derezo.html", "xcvxc", "&nbsp<strong>CHATEAU DE LA MONNIAIS</strong><br />&nbsp;Ce week-end"],
			["http://www.ville-cesson-sevigne.fr/test/44.jpg", "http://www.ville-cesson-sevigne.fr/news/640/91/Espace-citoyen.html", "xcvxc", "&nbsp<strong>Espace citoyen</strong><br />&nbsp;Les 3 projets"],
				
		["http://www.ville-cesson-sevigne.fr/test/43.jpg", "news/595/91/Photographiez-la-biodiversite-de-vos-quartiers.html", "xcvxc", "&nbsp<strong>Envoyez vos photos</strong><br />&nbsp;"],
		["http://www.ville-cesson-sevigne.fr/test/41.jpg", "http://www.ville-cesson-sevigne.fr/news/586/91/Saison-culturelle-2010-2011.html", "xcvxc", "&nbsp<strong>Saison culturelle</strong><br />&nbsp;Les grands rendez-vous 2010-2011"],
		["http://www.ville-cesson-sevigne.fr/test/40.jpg", "a-la-une/inscriptions-braderie-cesson-sevigne-2010.html", "xcvxc", "&nbsp<strong>Braderie 2010</strong><br />&nbsp;3 octobre 2010"]
	],
	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)
	}
})



