/**
 * On ready event handler.
 */
$(document).ready(function() {
    // Every span under the menu div should pretend to be a hyperlink.
    $("#menu span").hover(
        function() {
            $(this).css('cursor', 'pointer');
        },
        function() {
            $(this).css('cursor', 'default');
        }
    );

    // Animate the header.
    $('#header').cycle({ fx : 'fade', speed: 5000});
});

