$(document).ready(function(){
    if($("#eatout a").length > 1){
        var a = $($("#eatout a")[0]).attr("class").split("_");
        var timeout = 4000;
        if(a.length == 2 && parseInt(a[1], 10)){
            timeout = parseInt(a[1], 10);
        }
        window.setTimeout('switchTopBanner(0)', timeout);
    }
});
function switchTopBanner(ix) {
    var imgs = $("#eatout a");
    var current = ix;
    if(++ix >= imgs.length) { ix = 0; }
    $(imgs[current]).fadeOut(1000);
    $(imgs[ix]).fadeIn(1000);
    var a = $(imgs[ix]).attr("class").split("_");
    var timeout = 4000;
    if(a.length == 2 && parseInt(a[1], 10)){
        timeout = parseInt(a[1], 10);
    }
    window.setTimeout('switchTopBanner(' + ix + ')', timeout);
}

