// JavaScript Document

$(document).ready(function(){


        var dialog = new ModalDialog ("#arc_box1");

        // Set up event listeners for showing and hiding the modal dialog
        $("#arc_link1").click (function() {
            dialog.show();
        });

        $("#close").click (function () {
            dialog.hide();
        });


});
