function imageFader(state) {
    $("#content6 .imageList:last").each(function() {
        if (state == 0) {
            $(this).fadeIn(3000, function() {
                setTimeout("imageFader(1)", 8000);
            });
        } else {
            $(this).fadeOut(3000, function() {
                setTimeout("imageFader(0)", 8000);
            });
        }
    });
    
    $("#content70").each(function() {
        if (state == 0) {
            $(this).fadeIn(3000, function() {
                setTimeout("imageFader(1)", 8000);
            });
        } else {
            $(this).fadeOut(3000, function() {
                setTimeout("imageFader(0)", 8000);
            });
        }
    });
    
    $("#content72").each(function() {
        if (state == 0) {
            $(this).fadeIn(3000, function() {
                setTimeout("imageFader(1)", 8000);
            });
        } else {
            $(this).fadeOut(3000, function() {
                setTimeout("imageFader(0)", 8000);
            });
        }
    });
}

$(document).ready(function() {
    var switcher = Math.random();
    if (switcher  < 0.5) {
        $("#content6 .imageList:last").css('display', 'none');
        $("#content70").css('display', 'none');
        $("#content72").css('display', 'none');
        setTimeout("imageFader(0)", 8000);
    
//        alert("hi 0 " + switcher);
    } else {
        setTimeout("imageFader(1)", 8000);
    
//        alert("hi 1 " + switcher);
    }
});
