// Initialize the plugin with no custom options
$(window).load(function()
{
	$("div#special_bar").smoothDivScroll({autoScroll: "always", autoScrollDirection: "endlessloopright", autoScrollInterval: 10, autoScrollStep: 2});

	$('a.dialog_box').live('click', function() {
		var url = this.href;
		var dialog = $("#dialog");
		if ($("#dialog").length == 0) {
			dialog = $('<div id="dialog" style="display:hidden"></div>').appendTo('body');
		} 

		// load remote content
		dialog.load(
			url,
			{},
			function(responseText, textStatus, XMLHttpRequest) {
				dialog.dialog();
			}
		);
		//prevent the browser to follow the link
		return false;
	});

});

