﻿$(function() {
    $('#ltt-nav li').hover(HoverImage, NormalImage);
});
NormalImage = function(e) {
    $(this).removeClass('li-hover');
    return false;
}
HoverImage = function(e) {
    $(this).addClass('li-hover');
    return false;
}