$(document).ready(function(){
	
	
	//Turn collection div into collapsable scroller
	$('.scrollerMenuInner').expandableScroller({
		offsetX: 158,
		offsetY: 130,
		itemTag: 'a',
		trayPadding: 34,
		arrowSize: 68,
		toggle: false
	});
	
	initAutoFilter('.filterMenuBox');
		
	
	if ( $('a.selected', $('.scrollerMenuInner')).length ) {
		var initialScroll = $('a.selected', $('.scrollerMenuInner')).offset().left - $('.scrollWrapper', $('.scrollerMenuInner')).offset().left - 150;
		
		$('.scrollerMenuInner')[0].scrollTo(initialScroll, true);
	}
});