var old = 0;
var current = 0;

var foto = new Array(
        'pics/start/foto1.jpg',
        'pics/start/foto2.jpg',
        'pics/start/foto3.jpg',
        'pics/start/foto4.jpg',
        'pics/start/foto5.jpg');

var fotolink = new Array(
        'http://www.schnizler.ch/ferienwohnungen/feri_foto_1.html',
        'http://www.schnizler.ch/ferienwohnungen/feri_foto_12.html',
        'http://www.schnizler.ch/ferienwohnungen/feri_foto_2.html',
        'http://www.schnizler.ch/ferienwohnungen/feri_foto_9.html',
        'http://www.schnizler.ch/ferienwohnungen/feri_foto_10.html');

function fresh()
{
        if (!document.images) return
        while (current == old)
        {
                current = Math.floor(Math.random()*foto.length);
        }
        old = current;
        document.images['foto'].src = foto[current];
        setTimeout('fresh()',5000);
}

function sendPage()
{
        var newwin = window.location.href=fotolink[current]; 
} 

function StartFoto()
   {
   fresh();
   }