function startGallery() {
	var g = $('gall');
	g.style.display = 'block';
	g.style.backgroundColor = '#f5f5f5';
	g.style.border = '1px solid #e0e0e0';
	var myGallery = new gallery(g, {
		timed: true,
		delay: 8000,
		textShowCarousel: 'Showcase',
		slideInfoZoneOpacity: 0.9,
		carouselMaximizedOpacity: 0.9,
		thumbIdleOpacity: 0.4
	});
}
window.addEvent('load', startGallery);
