$(function() // onLoadComplete
{
    var imageLocation = "../images/";
    $(".lightBox").lightBox(
    {
        imageLoading: imageLocation + 'lightbox-ico-loading.gif',
        imageBtnClose: imageLocation + 'lightbox-btn-close.gif',
        imageBtnPrev: imageLocation + 'lightbox-btn-prev.gif',
        imageBtnNext: imageLocation + 'lightbox-btn-next.gif'
    });

    $("input.disableOnClick").click(function()
    {
        $(this).after("<input type=\"button\" value=\"Please Wait...\" disabled=\"disabled\" />").hide();

        $("input.disableOnFriendClick").attr("disabled", "disabled");

    });

});

// this is a stub that will be overridden by ASP.NET version, if it exists on the page
function ValidatorEnable() { } 

