﻿$(window).ready(function () {
    setTimeout("SwapTopBanner()", 5000);
    setTimeout("SwapBottomBanner()", 7000);
    setTimeout("SwapQuote()", 5000);
});
//--
var CurrentQuote = 1;
var MaxQuote = 5;
function SwapQuote() {
    $("#Quote" + CurrentQuote).fadeOut('slow');
    if (CurrentQuote + 1 == MaxQuote + 1) {
        CurrentQuote = 1;
    }
    else {
        CurrentQuote = CurrentQuote + 1;
    }
    $('#Quote' + CurrentQuote).fadeIn('slow');
    setTimeout("SwapQuote()", 5000);
}
//--
var CurrentTop = 1;
var MaxTop = 5
function SwapTopBanner() {
    $('#dvTopBanner' + CurrentTop).fadeOut('slow');
    if (CurrentTop + 1 == MaxTop + 1) {
        CurrentTop = 1;
    }
    else {
        CurrentTop = CurrentTop + 1;
    }
    $('#dvTopBanner' + CurrentTop).fadeIn('slow');
    setTimeout("SwapTopBanner()", 5000);
}
//--
var CurrentBottom = 1;
var MaxBottom = 3
function SwapBottomBanner() {
    $('#dvBottomBanner' + CurrentBottom).fadeOut('slow');
    if (CurrentBottom + 1 == MaxBottom + 1) {
        CurrentBottom = 1;
    }
    else {
        CurrentBottom = CurrentBottom + 1;
    }
    $('#dvBottomBanner' + CurrentBottom).fadeIn('slow');
    setTimeout("SwapBottomBanner()", 5000);
}
