//
// +----------------------------------------------------------------------+
// | Enterprise CMS                                                       |
// +----------------------------------------------------------------------+
// | Copyright (c) 2007 Patrik Šíma                                       |
// +----------------------------------------------------------------------+
// | Author: Patrik Šíma <patrik@ovx.cz>                                  |
// |         http://www.ovx.cz/                                           |
// +----------------------------------------------------------------------+
// $Id: menu.js 36 2008-01-17 15:59:44Z patrik $
//

    $(document).ready(function(){
        $('#navi ul>li ul').each(function(){
            var x = $(this).parent().offset().left;
            var y = $(this).parent().offset().top;
            $(this).css({top:y+25,left:x});
        })
        $('#navi ul>li').hover(
            function(){
                $(this).css({backgroundColor:''});
                $(this).find('ul').show();
            },
            function(){
                $(this).css({backgroundColor:''});
                $(this).find('ul').hide();
            }
        )
    });
