jQuery().ready(function(){	// Initialize the plugin	$(function() {		$('div#panorama').smoothDivScroll({			autoScroll: "onstart",			autoScrollDirection: "backandforth",			autoScrollStep: 1.5		});	});	$('a.toggle').click(function(){		$('a.toggle').toggle();	});  	$('a.btn_pause').click(function(){		$('#panorama').smoothDivScroll('stopAutoScroll');		return false;	});	$('a.btn_play').click(function(){		$('#panorama').smoothDivScroll('startAutoScroll');		return false;	});});
