// JavaScript Document

$(function() {
    var navButtons = '#home, #cast, #pictures, #videos, #mail, #eventful, #reverb, #itunes';
    $(navButtons).hover(function() {
        $(this).stop().animate({'top':'-46px'});
        }, function () {
        $(this).stop().animate({'top':'0px'})
        });
});
