	// Set the sliderValue to 1 as we want the image to be zoomed 100%
	// Alter the alignX variable to make sure the slider goes to the end of the track
	var demoSlider = new Control.Slider('handle1','track1',
		{axis:'horizontal', minimum: 0, maximum: 200, alignX: -6, increment: 2, sliderValue: 0.44});

	demoSlider.options.onSlide = function(value) {
		scaleIt(value);
	}

	demoSlider.options.onChange = function(value) {
		scaleIt(value);
	}