window.addEvent("domready", function() {
	
	new Slider(
		{
			container: 'framesScroll',
			itemClass: 'frame',
			direction: 'v',
			nextButton: 'frameNext',
			previousButton: 'framePrev',
			isScrolling: false
		}
	);

	var oWheelSlider = new Slider(
		{
			container: 'wheelsScroll',
			itemClass: 'wheel',
			direction: 'h',
			nextButton: 'wheelNext',
			previousButton: 'wheelPrev'
		}
	);	

	
	var oConfigurator = new Configurator({
		'rootContainerID'  : 'configurator',
		'frameContainerID' : 'framesContainer',
		'wheelContainerID' : 'wheelsContainer',
		'bikeContainerID'  : 'bikeContainer',
		'savedContainerID' : 'savedSelections',
		'requestUrl'	   : '/template/front_json_requests.php',
//		'imgSystemPath'	   : '/template/images/configurator/',
//		'imgBikePath'	   : '/template/images/configurator/img/425-340',
//		'imgBikePathBig'   : '/template/images/configurator/img/1000-800'
		'imgSystemPath'	   : '/upload/Image/configurator/',
		'imgBikePath'	   : '/upload/Image/configurator/img/425-340',
		'imgBikePathBig'   : '/upload/Image/configurator/img/1000-800'
	},oWheelSlider);
	
	

});
