c = 0;
function ChangeYacht() {
	a = "/images/top2.jpg";
	b = "/images/top.jpg";
	c = c == 0 ? 1 : 0;
	
	if(c == 0)
		document.getElementById("yachtbild").src= b;
	else
		document.getElementById("yachtbild").src= a;
		
	window.setTimeout("ChangeYacht()", 10000);
}

function ShowPic(a) {
	document.getElementById("pikker_img").src = 'adimgs/'+a;
	document.getElementById("pikker").style.display ="block";
}
