(function($) {
    $(document).ready(function() {
        /* First hide everything */
        $('ul.level0').each(function() {
            $(this).attr('style','left: -10000px;');
        });
        
        $('ul#nav li.level0').each(function() {
           if($(this).hasClass('active')) {
               $(this).find('a:first').addClass('active');
           } 
        });

        /* Beware you need to use $.live or the events wont fire on IE7 */
        $('ul#nav li.level0').live('mouseenter',function() {
            $(this).addClass('over');
            $(this).find('a:first').addClass('over');
            $(this).find('ul.level0').each(function() {
                $(this).attr('style','left: 0px;');
            });
        });

        /* Beware you need to use $.live or the events wont fire on IE7 */
        $('ul#nav li.level0').live('mouseleave',function() {
            $(this).removeClass('over');
            $(this).find('a:first').removeClass('over');
            $(this).find('ul.level0').each(function() {
                $(this).attr('style','left: -10000px;');
            });
        });
    });
})(jQuery);
