﻿jQuery(document).ready(function() {
    //Handle the closing of addThis Menu
    jQuery("body").click(function() {
        if (jQuery(".hover_menu").is(":visible")) {
            jQuery(".hover_menu").hide();
        }
    });

    //Ensures that you can not push these elements to hide
    jQuery(".hover_menu").click(function(e) { e.stopPropagation(); });
    jQuery("a.addThis").click(function(e) { e.stopPropagation(); });
});

function toggleAddThis() {
    jQuery(".hover_menu").toggle();
}

var addthis_config =
{
    // ... members go here
    //ui_language: "da"
}


