$(document).ready(function() {
    // home slideshow central
    $('#slideshow').innerfade({
        speed: 'slow',
        timeout: 4000,
        type: 'random',
        containerheight: '220px'
    });
    
    // Gerard On Demand //
    
    // hide all videos except the first one
    $('#video .playergod li:not(:first)').hide();
    // onclick show choosen video
    $('#video .video-display a').bind('click', function() {
        // hide all videos
        $('#video .playergod li').hide();
        // get choosen video id from link
        var videoId = $(this).attr("href");
        // show video
        $(videoId).show();        
        // avoid the link to be followed
        return false;
    });
    
});