		
/** 
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: 'idisplay-cat1', offset: 0}, {id: 'idisplay-cat2', offset: 0.141}, {id: 'idisplay-cat3', offset: 0.293}, 
							  {id: 'idisplay-cat4', offset: 0.588}, {id: 'idisplay-cat5', offset: 1.000} ],
				imageOverlap: 0, sliderCentering: 218, 
				startupCategory: 3, 
				arrowScrollAmount: 0.38,
			}); 
		}, false);

		
