﻿$(document).ready(function () {
    $('#DIV_LeftNav li').click(function () {
        var url = $(this).find('a').attr('href');
        document.location.href = url;
    });

    $('#DIV_LeftNav li[togget]').hover(
                function () {
                    $(this).css("background-color", "#EEEEEE").fadeTo("fast", 0.7);
                },
                function () {
                    $(this).css("background-color", "").fadeTo("normal", 1);
                }
            );
});
