$(function() {
    var navButtons = '#youtube, #facebook, #tweeter, #contact';
    $(navButtons).hover(function() {
        $(this).stop().animate({'top':'-30px'});
        }, function () {
        $(this).stop().animate({'top':'0px'})
        });
}); 
