var d = document;

$(d).ready(function(){
        // load navigation
        $('#navigator li').hover(function() {$('ul', this).fadeIn(200);}, function() {$('ul', this).fadeOut(100);});
        $("#zoom_img").fancybox({
            'zoomOpacity': true,
            'overlayShow': false,
            'zoomSpeedIn': 500,
            'zoomSpeedOut': 500
        });

        // preload menu gifs
        for (i = 1; i <= 6; i++)
        {
                 img = new Image(65,65);
                 img.src="/i/menu/menu_"+i+"a.gif";
        }

        // rollover 4 menu
        $('img[rel^="menu_"]').each(function (i) {
                img  = $(this);
                path = '/i/menu/';
                img.hover(
                    function (){
                            $(this).attr('src', path + $(this).attr('rel') + 'a.gif')
                    },
                    function (){
                            $(this).attr('src', path + $(this).attr('rel') + '.gif')
                    }
                );
        });
        setMainContentRightSize();
        $(window).resize(function(){
                setMainContentRightSize();
        });
});

onload = function() {
        setMainContentRightSize();
}

setMainContentRightSize = function() {
        $('#main').height(($(window).height()-$('#mainfooter').height())+"px");
}