window.addEvent('domready',function(){
		var iceslider_hs_1 = new  IceSlider({
			box: $('iceslider_box_1'),
			autoPlay: true,
			items: $$('#iceslider_box_1 div'),
			size: 560, 
			interval: 4000,
			fxOptions: {
				duration: 1500,
				transition: Fx.Transitions.Quint.easeOut,
				wait: false
			},
			addButtons: {
				previous: $('iceslider_previous_1'),
				play: $('iceslider_play_1'),
				stop: $('iceslider_stop_1'),
				next: $('iceslider_next_1')
			},
			
			handles: $$('#iceslider_handels_1 li'),
			
			handle_event: 'click',
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
				currentHandle.addClass('active');	
			}

		});

	});