window.onload = function() {
	prepareImages();
	initCo3Gallery();
}

var playTimeout
function initCo3Gallery() {
	var imageLists = $(".imageList");
	var settings = {
			playSpeed: 5000,
			onOpened: function(e) {
			playTimeout = setTimeout(function() {
						var btn = jQuery("#Co3Gallery img[src*='btn_play.png']").click();
					}, 5000);
			}
	};
	imageLists.children("img").CreateGallery(settings);
	
}

function prepareImages() {
	var imageList = $(".imageList");
	var imgs = "";
	for(i=1; i <= 73 ; i++) {
		imgs = imgs + "<img src=\"x.gif\" imagehref=\"../../foto/ciff2010/Modeshow"+i+".jpg\" />";
	}
	imageList.append(imgs);
}

function runShow() {
	jQuery(".imageList img:first").click();
}