$(document).ready(function() {
    $('a.modal').attr('rel', 'gallery').fancybox({
        padding: 0,
        cyclic: true,
        overlayOpacity: 0.9
    });
    
    $('li.video').hoverIntent(
        function() {
            $(this).find('.video-details').animate({
                top: '0'
            }, 350);
        },
        function() {
            $(this).find('.video-details').animate({
                top: '-140px'
            }, 250);
        }
    );
    
    $('li.bio').hoverIntent(
        function() {
            $(this).find('.bio-info').animate({
                top: '0'
            }, 350);
        },
        function() {
            $(this).find('.bio-info').animate({
                top: '-140px'
            }, 250);
        }
    );

    if ($('#music-player').length > 0) {
        flashembed('music-player', 'mp3/sources/penguin.swf', {
            wmode: 'transparent'
        });
    }

});

