﻿// Crossfade Controller
var crossfade = {
    container: Object,
    init: function() {
        this.container = $('#crossfade');
        this.run();
    },
    run: function() {
        this.container.innerfade({
            speed: 1000,
            timeout: 12000,
            containerheight: '450px'
        });
    }
}

// Start
$(document).ready(function() {
    crossfade.init();
});
