		
/** 
Notes:

categories => Allows you to set the offset of where each category is on initialization
startupCategory => Allows you to set which category gets display/slid to first (note, the categories start at 0, not 1)

**/
		
Event.observe(window, 'load', function() {
	Widgets.ProductDisplay.init({
				categories: [ {id: 'slider-cat1', offset: 0}, {id: 'slider-cat2', offset: 0.200}, {id: 'slider-cat3', offset: 0.360}, 
							  {id: 'slider-cat4', offset: 0.550}, {id: 'slider-cat5', offset: 0.800}, {id: 'slider-cat6', offset: 1.000} ],
				imageOverlap: 0, sliderCentering: 218, 
				startupCategory: 0, 
				arrowScrollAmount: 0.10
			}); 
		}, false);

		