/**
 * navigation.js
 * requires jquery, hoverIntent
 */
$(function () {
    $('#navigation li, #navigation_left li').hoverIntent({
        over: function () {
            $(this).addClass('hovered');
        },
        out: function () {
            $(this).removeClass('hovered');
        },
        timeout: 600
    });
});