jQuery(function($){
	$(document).ready(function(){
					
		$("#makeMeScrollable").smoothDivScroll({
			autoScrollingMode: "onStart",
			mousewheelScrolling: "allDirections",
			autoScrollingDirection: "backAndForth"
		});
		
		$("#makeMeScrollable").hover(function() {
			$(this).smoothDivScroll("stopAutoScrolling");
		}, function(){
			$(this).smoothDivScroll("startAutoScrolling");
		});
		
		$(".view, #gallery-toggle-bar a").click(function() {
			$("#makeMeScrollable").smoothDivScroll("disable");
		});
		
		
		$('#popup-galleries-close, #gallery-info-close, #toggle-overlay, .fancybox-close').live('click',function(e){
			$("#makeMeScrollable").smoothDivScroll("startAutoScrolling");
			$("#makeMeScrollable").smoothDivScroll("enable");
			$("#makeMeScrollable").smoothDivScroll("startAutoScrolling");
		});
		
		$(".fancybox-overlay, .viewer ul, .viewer .close, .viewer li.current, .viewer li.current div").live('click',function(e){
			if( e.target == this ) {
				$("#makeMeScrollable").smoothDivScroll("enable");
				$("#makeMeScrollable").smoothDivScroll("startAutoScrolling");
			}
		});
		
	});
});