$(document).ready(function(){
    $('.socialpiclink').hover(function(){
        // Kom binnen bij hover: image zichtbaar maken
        if (!$(this).hasClass('hovered')){
            $(this).addClass('hovered')

            $(this).effect('bounce', 500, function(){
                $(this).removeClass('hovered');
            });
        }
    }, function(){
        // Ga weg bij hover: image weer onzichtbaar maken
        
        });

    $('#twitter_update').getTweet("salvadorven");

});


function clickProfile(){
    $.scrollTo('#profile', 2000);
}

function clickPublications(){
    $.scrollTo('#publications', 2000);
}

function clickTop(){
    $.scrollTo('#top', 2000);
}
