var mygallery=new simpleGallery({
	wrapperid: "simplegallery1", //ID of main gallery container,
	dimensions: [660, 270], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["image/main_ishikawapga201003.jpg", "guide/201003/ishikawa_pga/index.html", "", "石川遼　PGAツアー出場予定試合を全試合放送！ "],
		["image/main_yokomine201003.jpg", "guide/201003/yokomine/index.html", "", "横峯さくら特集  "],
		["image/main_jlpga201003.jpg", "guide/201003/jlpga/index.html", "", "国内女子ツアー開幕"],
		["image/main_hiden.jpg", "recommend/hiden/index.html", "", "「GOLF 秘伝！プロの技！！」DVD"],
		["image/main_pga2010.jpg", "guide/pga/2010/index.html", "", "PGAツアー情報"],
		["image/main_champions2010.jpg", "guide/champions/2010/index.html", "", "チャンピオンズツアー情報"],
		["image/main_jgto2010.jpg", "guide/jgto/2010/index.html", "", "国内男子ツアー情報"],
		["image/main_jlpga2010.jpg", "guide/jlpga/2010/index.html", "", "国内女子ツアー情報"],
		["image/main_jgn.jpg", "channel/index.html", "", "ゴルフ専門TV ゴルフネットワーク"]
	],
	autoplay: [true, 5000, 5], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 300, //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)
	}
})
