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_koreajapan.jpg", "guide/201008/koreajapan/index.html", "", "日韓ゴルフ対抗戦"],
		["image/main_hdcampaign.jpg", "campaign/hdstart/index.html", "", "『ゴルフネットワークHD』でHD（ハイビジョン）放送を楽しもう！"],
		["image/main_gncup2010.jpg", "event/gncup/index.html", "", "ゴルフネットワーク選手権 SKINS CUP 2010"],
		["image/main_thetour2010.jpg", "guide/201009/thetour/index.html", "", "ザ・ツアーチャンピオンシップpresented by コカ・コーラ "],
		["image/main_professional.jpg", "guide/201009/professional/index.html", "", "プロフェッショナル・レッスン "],
		["image/main_fusion.jpg", "guide/201009/fusion/index.html", "", "Fusion -アスリートたちの競演- "],
		["image/main_gnweekly.jpg", "guide/orijinal/gnweekly/index.html", "", "GNウィークリー"],
		["image/main_livisp2010.jpg", "guide/201007/livesp/index.html", "", "LIVE スペシャル"],
		["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", "", "国内女子ツアー情報"]
	],
	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)
	}
})
