var tout = "";
function initCo3Gallery() {
	var imageLists = $(".imageList");
	var settings = {
		imageInformationHeight: 40,
		imageInformationTemplate: '[description]',
		playSpeed: 4000,
		onClosed: function() { clearTimeout(tout); }
//		onOpen: null,
//		onOpened: null
	}
	jQuery(".imageList img").each(function() {
		var img = jQuery(this);
		var header = img.attr("description").replace(".jpg", "").replace("_", " ").replace("-", " ");
		img.attr("description", header);
	});
	imageLists.each(function() {
		var imageList = jQuery(this);
		 jQuery(this).children("img").CreateGallery(settings)
	});
}

function startSlideshow() {
	jQuery(".imageList img:first").click();
	tout = setTimeout( function (){	jQuery.Co3Gallery.togglePlay() },5500);
}