﻿// 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.


$(function() {
    $('div#slide_show').innerfade({
        speed: 3000,
        timeout: 5000,
        type: 'random',
        containerheight: '380px'
    });

});