jQuery(document).ready(function($){

    // PROJECT MENU EFFECTS:
    $('#projectMenu').find('li.active').find('span').css({backgroundPosition: "0 -17px"});
    $('#projectMenu').find('li.inactive').hover(
        function(){
            $(this).find('span').css({backgroundPosition: "0px -17px"});
            $(this).siblings('.active').find('span').css({backgroundPosition: "0px 0px"});
        },
        function(){
            $(this).find('span').css({backgroundPosition: "0px 0px"});
            $(this).siblings('.active').find('span').css({backgroundPosition: "0px -17px"});
        }
    );

    // FLASH LOGO:
    $('#flashLogo').flash({
        swf: '/images/logo.swf',
        width: 256,
        height: 48
    });
});

jQuery(document).ready(function($){

    setTimeout(function() {
    // SET FRAME HEIGHTS:
    if ($('#frameBright').height()){
        frameHeight = $('#frameBright').parent().height() - $('#projectHeader').height() + 50;
        $('#frameBright').height(frameHeight);
    }
    if($('#frameCcenter').height()){
        frameHeight = $('#frameCcenter').parent().height() - $('#projectHeader').height() + 120;
        $('#frameCcenter').height(frameHeight);
    }
    if($('#frameDcenter').height()){
        frameHeight = $('#frameDcenter').parent().height() - $('#projectHeader').height() + 120;
        $('#frameDcenter').height(frameHeight);
    }
    },100);

    // IMAGE TOOLTIPS:
    // create element for tooltip:
    var tooltip = $('<div/>').addClass('tooltip');
    // add tooltip to all images nested in anchor with lightbox class (a.lb):
    $('a.lb').hover(
        function(){
            // on mouseover:
            // get alt text of img, use this as tooltip label and append the tooltip to show:
            var label = $(this).find('img').attr('alt');
            tooltip.html(label).appendTo($(this));
        },
        function(){
            // on mouseout:
            // remove the tooltip:
            tooltip.remove();
        }
    );

});

