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/47.jpg", "a-la-une/les-glacieres-bleues-de-l-ete-2010.html", "xcvxc", "&nbsp<strong>Dimanche 26 septembre </strong><br />&nbsp;Placis Vert"],
				["http://www.ville-cesson-sevigne.fr/test/100.jpg", "http://www.ville-cesson-sevigne.fr/news/1443/91/Inauguration-Salle-Paul-Janson-et-remise-du-prix-du-challenge-de-la-ville-la-plus-sportive.html", "xcvxc", "&nbsp<strong>Reportage</strong><br />&nbsp;"]
		//["http://www.ville-cesson-sevigne.fr/test/94.jpg", "http://www.ville-cesson-sevigne.fr/news/1311/91/Nouveau-a-Cesson-une-librairie-coin-cafe.html", "xcvxc", "&nbsp<strong>Nouvelle librairie</strong><br />&nbsp;"]
		//["http://www.ville-cesson-sevigne.fr/test/91.jpg", "http://www.ville-cesson-sevigne.fr/news/1245/91/Les-photos-et-videos-de-la-Fete-de-l-Ete-samedi.html", "xcvxc", "&nbsp<strong></strong><br />&nbsp;"]
		//["http://www.ville-cesson-sevigne.fr/test/82.jpg", "http://www.ville-cesson-sevigne.fr/news/1093/91/Photographiez-l-arbre-dans-tous-ses-etats-a-Cesson.html", "xcvxc", "&nbsp<strong>Jeu</strong><br />&nbsp;Photos"]
	//["http://www.ville-cesson-sevigne.fr/test/83.jpg", "http://www.ville-cesson-sevigne.fr/news/1101/91/ZAC-des-Pierrins.html", "xcvxc", "&nbsp<strong>Info</strong><br />&nbsp;ZAC des Pierrins"]
	],
	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)
	}
})
		
		




