
$(document).ready(function () {

    $('#main-nav span').hover(function(e){
    	//mouse over
    	$(this).stop().animate({top: '-2px'}, 120, function(){
    		wobble(e, 2);
    	});
    }, function(){
    	//mouse out
    	$(this).stop().animate({top: '0'}, 120);
    });
 
});

function wobble(e, amount){
	$(e.target).animate({top: amount + 'px'}, function(){
		wobble(e, -amount);
	});
}

