var home_images_id = ["home_BG1", "home_BG2"]; 
function home_background_slide(i) 
{
    if (i == home_images_id.length-1)
    {
        j = 0;
    }
    else
    {
        j = i + 1;
    }
    $("#"+home_images_id[j]).fadeIn(3000);
    $("#"+home_images_id[i]).fadeOut(3000);
    i++;
    if (i == home_images_id.length) 
    {
        i = 0;
    }
    setTimeout("home_background_slide("+i+")", 8000);
}

var resto_1_images_id = ["Diapo1", "Diapo5", "Diapo6", "Diapo4"];
var diapo0 = "Diapo0"; 
function resto_1_background_slide(i) 
{
    if (i == resto_1_images_id.length-1)
    {
        j = 0;
    }
    else
    {
        j = i + 1;
    }
    $("#"+diapo0).fadeOut(3000);
    $("#"+resto_1_images_id[j]).fadeIn(2000);
    $("#"+resto_1_images_id[i]).fadeOut(4000);
    i++;
    if (i == resto_1_images_id.length) 
    {
        i = 0;
    }
    setTimeout("resto_1_background_slide("+i+")", 12000);
}

var resto_6_images_id = ["Diapo1", "Diapo2"];
var diapo0 = "Diapo0"; 
function resto_6_background_slide(i) 
{
    if (i == resto_6_images_id.length-1)
    {
        j = 0;
    }
    else
    {
        j = i + 1;
    }
    $("#"+diapo0).fadeOut(3000);
    $("#"+resto_6_images_id[j]).fadeIn(2000);
    $("#"+resto_6_images_id[i]).fadeOut(4000);
    i++;
    if (i == resto_6_images_id.length) 
    {
        i = 0;
    }
    setTimeout("resto_6_background_slide("+i+")", 12000);
}


var bar_images_id = ["bar_BG1", "bar_BG2", "bar_BG3"];
var bar0 = "bar_BG0"; 
function bar_background_slide(i) 
{
    if (i == bar_images_id.length-1)
    {
        j = 0;
    }
    else
    {
        j = i + 1;
    }
    $("#"+bar0).fadeOut(3000);
    $("#"+bar_images_id[j]).fadeIn(3000);
    $("#"+bar_images_id[i]).fadeOut(3000);
    i++;
    if (i == bar_images_id.length) 
    {
        i = 0;
    }
    setTimeout("bar_background_slide("+i+")", 8000);
}
