// JavaScript Document
var mygallery=new simpleGallery({
	wrapperid: "graphic", //ID of main gallery container,
	dimensions: [896, 340], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
	imagearray: [
		["common/int/a02.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international2.html", "", ""],
		["common/int/a03.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international3.html", "", ""],
		["common/int/a04.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international5.html", "", ""],
		["common/int/a05.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international6.html", "", ""],
		["common/int/a06.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international5.html", "", ""],
		["common/int/a07.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international.html", "", ""],
		["common/int/b02.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international6.html", "", ""],
		["common/int/b03.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international5.html", "", ""],
		["common/int/b04.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international3.html", "", ""],
		["common/int/b05.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international.html", "", ""],
		["common/int/b06.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international8.html", "", ""],
		["common/int/b07.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international7.html", "", ""],
		["common/int/c02.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international8.html", "", ""],
		["common/int/c03.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international4.html", "", ""],
		["common/int/c04.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international4.html", "", ""],
		["common/int/c05.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international8.html", "", ""],
		["common/int/c06.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international4.html", "", ""],
		["common/int/c07.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international4.html", "", ""],
		["common/int/c08.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international6.html", "", ""],
		["common/int/d02.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international6.html", "", ""],
		["common/int/d03.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international3.html", "", ""],
		["common/int/d04.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international.html", "", ""],
		["common/int/d05.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international2.html", "", ""],
		["common/int/d06.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international.html", "", ""],
		["common/int/d07.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international5.html", "", ""],
		["common/int/d08.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international7.html", "", ""],
		["common/int/e02.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international7.html", "", ""],
		["common/int/e03.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international2.html", "", ""],
		["common/int/e04.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international7.html", "", ""],
		["common/int/e05.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international7.html", "", ""],
		["common/int/e06.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international3.html", "", ""],
		["common/int/f01.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international.html", "", ""],
		["common/int/f02.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international4.html", "", ""],
		["common/int/f03.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international2.html", "", ""],
		["common/int/f04.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international6.html", "", ""],
		["common/int/f05.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international5.html", "", ""],
		["common/int/f06.jpg", "http://www.shortshorts.org/2009/ja/ssff/film/international2.html", "", ""]
	],
	autoplay: [true, 6000, 2], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
	persist: true,
	fadeduration: 500, //transition duration (milliseconds)
	oninit:function(){ //event that fires when gallery has initialized/ ready to run
	},
	onslide:function(curslide, i){ //event that fires after each slide is shown
		//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)
	}
})
