var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [640, 320], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_mib_replica.jpg", "/SearchResults.asp?Cat=46", "", ""],	
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_beatles.jpg", "/SearchResults.asp?Cat=7", "", ""],	
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_inigo_statue.jpg", "/ProductDetails.asp?ProductCode=408126", "", ""],	
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_dpr_statue.jpg", "/ProductDetails.asp?ProductCode=408127", "", ""],				
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_mount_kissmore.jpg", "/ProductDetails.asp?ProductCode=408160", "", ""],	
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_spectre_pre_order.jpg", "/ProductDetails.asp?ProductCode=408145", "", ""],	
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_GH_GG.jpg", "/SearchResults.asp?Cat=4", "", ""],
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_garfield_statue.jpg", "/ProductDetails.asp?ProductCode=408101", "", ""],
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_PB_BOBBLE.jpg", "/ProductDetails.asp?ProductCode=408152", "", ""],				 
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_TAROT.jpg", "/ProductDetails.asp?ProductCode=408014", "", ""],		
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_DR_EE.jpg", "/ProductDetails.asp?ProductCode=408019", "", ""],		
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_JT.jpg", "/ProductDetails.asp?ProductCode=408012", "", ""],
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_roberts.jpg", "/ProductDetails.asp?ProductCode=408017", "", ""],
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_UMRING.jpg", "/ProductDetails.asp?ProductCode=408018", "", ""],
		["/v/vspfiles/templates/factoryent/images/homepage/gallery/headline_GH.jpg", "/SearchResults.asp?Cat=4", "", ""]
	],
	autoplay: [true, 5000, 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)
	}
})
