var addthis_config = {
    services_exclude: 'email'
};

//in order to move the sharing to somwhere else on the page OTHER than
//the first H1 tag add an element with the id='shareContainer'
//e.g. <div id="shareContainer"></div>
//
//to disable sharing on a page add an attribute to the first H1 tag
//disableSharing="true"
//eg <h1 disableSharing="true">Yay Internships</h1>

$(document).ready(function(){

    var options;
    var element;
    
    if ($('#shareContainer').length > 0) {
        options = {
            description: shareDesc
        };
        element = $('#shareContainer');
    }
    else {
        options = {
            style: 'float:right; font-size: 60%',
            description: shareDesc
        };
        element = $('h1:first');
    }
    
    element.share(options);
});

