﻿$(document).ready(function () {
    $('<div id="ContentDialog"><h2 id="ContentDialogTitle"></h2><div id="ContentDialogContent"><img src="../images/indicator.gif" /></div><a href="#" id="hlContentDialogClose">Close This Window</a></div>').appendTo('body');
    $('<div id="ModalOverlay"></div>').appendTo('body');

    $(".contentDialog").click(function (e) {
        $("#ContentDialog #ContentDialogContent").load($(this).attr("href"));
        $("#ContentDialog #ContentDialogTitle").text($(this).attr("title"));
        $("#ContentDialog").fadeIn();
        $("#ModalOverlay").fadeIn();
        $("body").scrollTop(0);
        e.preventDefault();
    });

    $("#hlContentDialogClose").click(function (e) {
		$("#ContentDialog").fadeOut('fast').hide();
        $("#ModalOverlay").fadeOut('fast');
        e.preventDefault();
    });
});
