$(document).ready(function(){
	
// BIKE COLORS //
	$("#fb-bike-gallery-colors ul li ul").hide();
	$("#fb-bike-gallery-colors ul li").hover(function () {
		$(this).children('ul').animate({width: 'toggle'}, 500, 'easeInBack');
		}, function() {
			$(this).children('ul').hide().stop(true,true);
	});	
// BIKE SWITCH //
	$('#fb-bike-gallery-main').cycle({
		fx: 'scrollRight',
		speed:  1000,
		easing: 'easeInOutBack',
		timeout: 0,
		startingSlide: 2,
		pager:  '#fb-bike-gallery-colors',
		pagerAnchorBuilder: function(idx, slide) {
			// return sel string for existing anchor
			return '#fb-bike-gallery-colors li:eq(' + (idx) + ') a';
		}
	});
});

