$(document).ready(function() {
    $('textarea.expanding').autogrow();
    $('a.enlarge').lightBox({fixedNavigation:true});

    $(function() {
        if($.browser.msie){
            $('div').each(function(i) {
                if($(this).css('position')!='absolute') $(this).css('zIndex', 1000 - (i * 10));
            });
        }
    });

    $(function(){
        $('#nav ul li').hover(
            function() {
                if(!$('ul',this).is(':animated')) {
                    $('ul, ul ul',this).slideDown();
                }
            },
            function() {
                $('ul, ul ul',this).slideUp();
            }
        );
    });
});
