
jQuery(document).ready(function() {

    var html = "";
    jQuery("#ShareItemsPlaceholder").empty();

    $("#facebook").attr("href", "http://www.facebook.com/sharer.php?u=" + encodeURIComponent(document.location.href));
    $("#twitter").attr("href", "http://twitter.com/home?status=Check+out+" + encodeURIComponent(document.location.href));
    $("#digg").attr("href", "http://digg.com/submit?url=" + encodeURIComponent(document.location.href));
    $("#linkedin").attr("href", "http://www.linkedin.com/shareArticle?mini=true&url=" + encodeURIComponent(document.location.href));
    

});
