// Array of positions (2-element [x, y] arrays) of the navlink hover star
// indexed by navlink id.
var navstar_pos = new Object();
navstar_pos['navlink-home'] = [98,176];
navstar_pos['navlink-about-me'] = [25,233];
navstar_pos['navlink-gallery'] = [68,261];
navstar_pos['navlink-resume'] = [82,308];
navstar_pos['navlink-contact'] = [32,352];
navstar_pos['navlink-thank-you'] = [38,411];

jQuery(document).ready(function($) {
    
    // Move the star next to the navlink over which the mouse is hovering.
    $('#sidebar a').hover(
        function() {
            var pos = navstar_pos[this.id];
            $('#navstar').show();
            $('#navstar').clearQueue();
            $('#navstar').animate({
                    "left": ""+pos[0]+"px",
                    "top":  ""+pos[1]+"px"
            });
        },
        function() {
            $('#navstar').hide();
        }
    );
});

