$(document).ready(function() {
    $('.quotes').innerfade({
        animationtype: 'fade',
        speed: 'normal',
        timeout: 6000,
        type: 'random_start',
        containerheight: '120px'
    });
    $('#twitter_update_list').innerfade({
        animationtype: 'fade',
        speed: 'normal',
        timeout: 6000,
        type: 'sequence',
        containerheight: 'auto'
    });
    $("#welcome-video").fancybox({
        padding: '5px',
        autoScale: false, 
        transitionIn: 'none',
        transitionOut: 'none',
        height: '295px',
        width: '400px',
        title: 'WELCOME FROM THE DIRECTOR'
    });
    $('a.fb_dynamic').each(function() {
        var dWidth = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=', ''));
        var dHeight = parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=', ''));
        $(this).fancybox({
            'width': dWidth,
            'height': dHeight,
            'autoScale': false,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic',
            'type': 'iframe'
        });
    });  
});

