var smoothScrollBrands = new Class({
	Extends: smoothScrollCoreshopDiv,
        options: {
        },
		initialize: function(options){
			var myContainer = $('brandsScrollContainer');
			if(!myContainer)
				return;
				
			var numPages = $('Brands_numPages').value;
			this.parent({
						scrollTarget: myContainer,
						pixelsPerScroll: 396,
						leftHandelEle: $('shopBrandsListLeftBtn'),
						leftHandelEleOnImg: '/images/layout/BrandsLeftArrowBtn.jpg',
						leftHandelEleOffImg: '/images/layout/BrandsLeftArrowBtn.jpg',
						rightHandelEle: $('shopBrandsListRightBtn'),
						rightHandelEleOnImg: '/images/layout/BrandsRightArrowBtn.jpg',
						rightHandelEleOffImg: '/images/layout/BrandsRightArrowBtn.jpg'
					}, numPages);
			this.setUpBrandTooltips();
        },
		setUpBrandTooltips: function() {
			var myTips = new Tips('.brandsToolTips');

			myTips.addEvent('hide', function(tip){
				tip.fade('out');
			});
			myTips.addEvent('show', function(tip){
				tip.fade('in');
			});
		}
});
