//Diaporama
// SPEED: In milliseconds - how long the transition should take.
// TYPE: Type of slideshow: 'sequence', 'random' or 'random_start'
// CONTAINERHEIGHT: The height of the div that is calling the innerfade method.


$(document).ready(function(){
    
    $('#banner').innerfade({
        speed: 3000,
        timeout: 4500,
        type: 'sequence',
        containerheight: '266px'
    });

});
