function changeCam(VALUE)
{
    currentTime = new Date();
    opacity("officeCam", 100, 0, 500);
    setTimeout('document.getElementById("officeCam").innerHTML = "<img src=\'http://webcam.eximion.com/webcam'+VALUE+'.jpg?'+    currentTime+'\' height=166 width=222 border=0>";opacity("officeCam", 0, 100, 500);', 500);
}

function reloadCam()
{
    changeCam('');                                           
    
    setTimeout("changeCam('2');", 8000);
    setTimeout("changeCam('3');", 16000);
    setTimeout("reloadCam();", 24000);
}


