
$(document).ready(function() {
	$("div#makeMeScrollable").smoothDivScroll({ 
		autoScroll: "onstart", 
		autoScrollDirection: "backandforth",
		autoScrollStep: 1,
		autoScrollInterval: 25,
		visibleHotSpots: "always" 
		}	
	);
	$("#makeMeScrollable").smoothDivScroll("stopAutoScroll");

	$('#gallery-list-ul a').click(function(e){
		e.preventDefault();
		$('#gallery-view-ul li').hide();
		$('#gallery-view-' + this.hash.replace('#', '')).fadeIn();
	})
});

