$(document).ready(function(){
    $('#shareThis').mouseover(function(e) {
        $(this).find('.hoverCont').removeClass('closed');
    }).mouseout(function(e) {
        $(this).find('.hoverCont').addClass('closed');
    }).find('.favorites').click(function(e) {
        if (document.all) window.external.AddFavorite(window.location, document.title);
        else window.sidebar.addPanel(document.title, window.location, '');
        return false;
    });
    
    var articleID = $('#articleID').val();
    if (articleID) {
        WL.eventHandler.events['shareThis'] = function($e) {
            $e.ajax({
                url: 'shareArticle',
                data: { articleId: articleID },
                type: 'GET',
                cache: false
            });
        };
    }

});
