<!--  Hide me please!
function jump(form) {var myindex=form.menu.selectedIndex 
if(form.menu.options[myindex].value != "0") {window.open(form.menu.options
[myindex].value, target="_top"); 
} 
} 
//--> 

function cyclePics()
{
    if (document.images)
    {
        if (document.cyclePicture.complete)
        {
            var randomnumber = Math.random();
            var numpics = cycleImages.length - 1;
            var thisPic = Math.round(numpics * randomnumber);
            document.cyclePicture.src = cycleImages[thisPic];
        }
    }
    setTimeout("cyclePics()", 8000);
}

function cycle()
{
    if (document.getElementById('cyclePicture')) 
    { 
        cyclePics(); 
    }
    
}
