// scripting: zurich by bike

// slide show & pop up window (css)

function runAnimPix(){
   document.images.AnimPix.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runAnimPix()', speed)
}

function closePopUp(){
	document.getElementById("popUp").style.display = "none";
}

function openSitPlan(){
	document.getElementById("sitPlan").style.display = "block";
}

function closeSitPlan(){
	document.getElementById("sitPlan").style.display = "none";
}
