jQuery
(
    function()
    {
       jQuery('.nav li').mouseover
       (
            function()
            {
                jQuery(this).addClass('hover');
            }
        ).mouseout
        (
            function()
            {
                jQuery(this).removeClass('hover');
            }
        )

    }
)
