jQuery(function(){
    jQuery('ul.sf-menu').superfish();
});

$(document).ready(function() {
    $('#slider').nivoSlider({
            pauseTime: 3000,
            effect: 'fade',
            directionNav: true
    });
        
    $(".video").fancybox({
        'transitionIn'	: 'none',
        'transitionOut'	: 'none'
    });
    $("a[rel=group]").fancybox({
        'transitionIn'		: 'none',
        'transitionOut'		: 'none',
        'titlePosition' 	: 'over',
        'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });    
        
    var browser_height  = $(window).height();
    var footer_height   = $('#bottom').height();
    var wrapper_height  = $('#wrapper').height();
    var main_height     = browser_height - footer_height;
    if (wrapper_height < main_height) $('#wrapper').height(main_height);
});
