$(document).ready(function() {
	// initialize scrollable and return the programming API
var api = $("#scroll").scrollable({
	keyboard: false,
	items: '#tools'
	

// use the navigator plugin
}).navigator().data("scrollable");


$("#flowtabs li a").click(function(){
    $("#flowtabs li a").removeClass("selected")
    $(this).addClass("selected");
});

	    $("#alert").dialog({
			width: 400,
			modal: true,
			autoOpen: false,
			draggable: false,
			resizable: false,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}

		});

if (!$.browser.webkit) {
	if ($.browser.msie) {
		$("#msie").html("Do NOT view this page in Internet Explorer!<br /><br />");
	}
	 $("#alert").dialog( "open" )
 }

});
