﻿$(function() {
    Cufon.replace("h1");
});

/*awards popup*/
function pageLoad(sender, args) {

    $(".AwardsImageMap area").click(function() {
        $(".Awards-Lightbox-Background").fadeTo(0, 0);
        $(".Awards-Lightbox-Background").show();
        $(".Awards-Lightbox-Background").fadeTo("slow", 0.5);

        $(".Awards-Lightbox-Message").fadeIn("slow");

        $(".Awards-Lightbox-Background").click(function() {
            $(".Awards-Lightbox-Background").fadeOut("slow");
            $(".Awards-Lightbox-Message").fadeOut("slow");
        });

        $(".Awards-Lightbox-Message .Close").click(function() {
            $(".Awards-Lightbox-Background").fadeOut("slow");
            $(".Awards-Lightbox-Message").fadeOut("slow");
        });
        return false;
    });

}
