﻿$(document).ready(function () {

    $("#menu li").mouseover(function () {
        $(this).children().children(".leftMenuRight").css("background", "url('/images/Layout/buton_over_tile.png')");
        $(this).children().children(".leftMenuRight").children("a").css("color", "#FFFFFF");
        $(this).children().children(".leftMenuLeft").css("background", "url('/images/Layout/buton_over_left.png')");
    });

    $("#menu li").mouseout(function () {
        if ($(this).attr("class") == "leftMenuSelectedItemFirstLevel leftMenuItemFirstLevel leftMenuContentItemFirstLevel") {
            $(this).children().children(".leftMenuRight").css("background", "url('/images/Layout/buton_active_tile.png')");
            $(this).children().children(".leftMenuRight").children("a").css("color", "#000000");
            $(this).children().children(".leftMenuLeft").css("background", "url('/images/Layout/buton_active_left.png')");
        }
        else {
            $(this).children().children(".leftMenuRight").css("background", "url('/images/Layout/buton_tile.png')");
            $(this).children().children(".leftMenuRight").children("a").css("color", "#000000");
            $(this).children().children(".leftMenuLeft").css("background", "url('/images/Layout/buton_left.png')");
        }
    });

});
