﻿// This next section sets up the fading images in the banner
// animationtype: 'slide' or 'fade' (default: fade) 
// speed: fading/sliding in milliseconds - how long the transition should take
// timeout: time between the fades/slides in milliseconds 
// type: Type of slideshow: 'sequence', 'random' or 'random_start'
// containerheight: The height of the div that is calling the innerfade method


$(function() {
    $('div#featured').innerfade({
        animationtype: 'fade',
        speed: 2000,
        timeout: 5000,
        type: 'sequence',
        containerheight: '100px'
    });

});

