// JavaScript Document

$(function() {
    var navButtons = '#print, #illustration, #threed, #resume, #contact';
    $(navButtons).hover(function() {
        $(this).stop().animate({'top':'-30px'});
        }, function () {
        $(this).stop().animate({'top':'0px'})
        });
});