window.addEvent('domready', function() {
									 
	var imgUrl = '/examples/1.3.1/glider_thumbs/images/';
	
	var glid = new Glider('imgs', {
		enable: {
			resizeHeight: true,
			resizeWidth: true,
			thumbnails: true,
			arrows: false,
			autostart: true,
			fullscreen: true
		},
		steps: 4000,
		captions: ['The Far Sky', 'Sea Islands', 'Bell Tower', 'Sunny Laguna'],
		captionHeightEffect: false,
		captionWrapper: 'captions',
		scrollOptions: {
			duration: 500	
		},
		morphOptions: {
			duration: 1000,
			transition: 'bounce:out'
		},
		thumbTexts: [
			'<img src="' + imgUrl + 'p1.jpg" alt="" />',
			'<img src="' + imgUrl + 'p2.jpg" alt="" />',
			'<img src="' + imgUrl + 'p3.jpg" alt="" />',
			'<img src="' + imgUrl + 'p4.jpg" alt="" />'
		],
		toNormalButtonClass: 'backToNormal'
	});
	
	if(Browser.Engine.trident) {
		$$('ul#imgs li').setStyle('margin-bottom', '-3px');	
	}
	
});