﻿
function AsyncLoadSocialButtons() {
    $(document).ready(function () {
        $(".social-button-holder").hoverIntent(RenderSocialButtons, HoverIntentOut);
    });
}

function RenderSocialButtons() {
    if ($(this).children('#finishedLoading').val() != "true") {
        var url = $(this).children('#canonincalSocialUrl').val();
        $(this).load("/portal-widgets/SocialButtons/Render/?url=" + url, function () {
            $(this).closest('.vertical-social-buttons').addClass('loaded');
        });
    }
}

function HoverIntentOut() {

}
