﻿function initMenu() {
    $('.link_lateral img').click(function() {
        var objSel = $(this).closest("div").find(".item_menu_lateral_MenuContainer");
        if ($(objSel).css("display") == "none") {
                $(objSel).animate({
                    opacity: 1,
                    height: 'show'
                }, "slow");
            $(this).addClass("Selected");
        } else {
            $(objSel).animate({
                opacity: 0,
                height: 'toggle'
            }, "slow");
            $(this).removeClass("Selected");
        }

        return false;
    });
}
$(document).ready(function() { initMenu(); });

