﻿function startGallery() {
				var myGallery = new IceSlideShow($('iceslideshow_box_1'), {
					
					/* AutoPlay */
					timed: 1, 
					delay: 8500, 
					
					/* Preloader */
					preloader: 1, 
					preloaderImage: 1, 
					preloaderErrorImage: 1, 
					
					/* Effects */
					defaultTransition: "fade",
					fadeDuration: 1200, 
					
					
					/* InfoPane options */
					showInfopane: 1,
					slideInfoZoneOpacity: 0.7,
					slideInfoZoneSlide: 1,
					
					/* Carousel options */
					showCarousel: 0,
					carouselMinimizedOpacity: 0.4, 
					carouselMinimizedHeight: 20,
					carouselMaximizedOpacity: 0.8, 
					thumbHeight: 45, 
					thumbwidth: 160, 
					thumbSpacing: 10, 
					textShowCarousel: 'Show Thumbnails', 
					showCarouselLabel: 1, 
					thumbCloseCarousel: 1, 
					activateCarouselScroller: 1,
					carouselPreloader: 1, 
					textPreloadingCarousel: 'Loading... '
				});
			}
			window.addEvent('domready',startGallery);
			

