/*
 * UVM script pro menu typu SuckerTreeMenu
 *
 * Depends:
 *	jQuery
 *
 */

var menu = {

    ini: function(){
        $(".suckertreemenu li").hover(
            function () {
                $(this).children("ul").show();
                $(this).children("ul").css("top","20px");
                $(this).children("ul").css("left","0px");
            }, 
            function () {
                $(this).children("ul").hide();
            }
        )
    }


};