$(document).ready(function() {
    $('#shareboxindex').hide();
    $('#shareboxdownloads').hide();
    $('#shareboxstories').hide();         
    
    $(".sharetrigger").click(function () {
        var ziel = $(this).attr("name");        
        if ( $('.' + ziel).is(':hidden') ) { 
            $('.' + ziel).fadeIn("slow");
        }
        else {
            $('.' + ziel).fadeOut("slow");
        }                        
    });         
 });
