function start() {
	time();
	window.setInterval("time()", 1000);
}

function time() {
	var now = new Date();
	hours = now.getHours();
	minutes = now.getMinutes();
	seconds = now.getSeconds();

	thetime = (hours < 10) ? "0" + hours + ":" : hours + ":";
	thetime += (minutes < 10) ? "0" + minutes + ":" : minutes + ":";
	thetime += (seconds < 10) ? "0" + seconds : seconds;

	element = document.getElementById("time");
	element.innerHTML = thetime;
}



loadImage1 = new Image();
loadImage1.src = "EEimages/EEdesign/top-homeOVER.gif";
staticImage1 = new Image();
staticImage1.src = "EEimages/EEdesign/top-home.gif";

loadImage2 = new Image();
loadImage2.src = "EEimages/EEdesign/top-kontaktOVER.gif";
staticImage2 = new Image();
staticImage2.src = "EEimages/EEdesign/top-kontakt.gif";

loadImage3 = new Image();
loadImage3.src = "EEimages/EEdesign/top-searchOVER.gif";
staticImage3 = new Image();
staticImage3.src = "EEimages/EEdesign/top-search.gif";

