function initLoginBox() {
    $.ajax({
        type: "GET",
        url: "/condenet/Services/Community/login.asp",
        cache: false,
        success: function(html) {
            jQuery(".top-menu .right").html(html);
        },
        error: function(XMLHttpRequest, ajaxOptions, thrownError) {
        }
    });
}


function initCommunityOnlineBox() {
    $.ajax({
        type: "GET",
        url: "/condenet/Services/Community/online.asp",
        cache: false,
        success: function(html) {
            jQuery("#communityOnlineBox").html(html);
        },
        error: function(XMLHttpRequest, ajaxOptions, thrownError) {
        }
    });
}


$(document).ready(function() {    
    //initCommunityOnlineBox();
});
