var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [650, 153], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [				 
				  ["images/showcase/idc_hpc.jpg", "/index.aspx?id=idc_award", "", "IDC HPC Innovation Excellence Award for C-DAC"],
				 ["images/showcase/anuman.jpg", "http://www.cdac.in/english/events/pdf/CES_CDAC_Seminar.pdf", "_new", "National Seminar on Interdisciplinary application of Weather & climate - Computational prespective"],
				  ["images/showcase/north_east_award.jpg", "/index.aspx?id=e_northeast", "", "Winner Award for best usege of ICT in Education Services Delivery and Lerning"],
				 ["images/showcase/symposium2012.jpg", "http://www.cdac.in/index.aspx?id=symposium_2012", "", "Accelerating Biology 2012 (Computing to Decipher)"],
				 ["images/showcase/hpc_certification.jpg", "http://pune.cdac.in/html/hpcs/cchpcp.aspx", "_new", "C-DAC Certified HPC Professional Certification Program"],
				 ["images/showcase/marathi_vishwakosh.jpg", "http://www.marathivishwakosh.in", "_new", "Launch of Marathi Vishwakosh"],
		["images/showcase/skoch_egov.jpg", "/index.aspx?id=skoch_nrop", "", "Indian Language Computing Initiative - National Rollout Plan for all 22 Scheduled Indian Languages"],
		["images/showcase/skoch_nrop.jpg", "/index.aspx?id=skoch_egov", "", "Pradhan Mantri Gram Sadak Yojana - Online Management, Monitoring &amp; Accounting System"]		
	],
	autoplay: [true, 4000, 2], //[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)
	}
})



