﻿//set images fading into each other
$(document).ready(function() {
    //add to each image cycle
    var timeout = 5000;
    $("#bottomMenu .imageCycle .innerfade").each(function() {
        $(this).innerfade({
            speed: 1800,
            timeout: timeout,
            containerheight: '57px'
        });
        timeout += 2000;
    });
});
