	{
		document.body.onmouseover=makeCool;
		document.body.onmousedown=action;
		document.body.onmouseup=stop;		
		document.body.onmouseout=makeNormal;
	}
	
	function makeCool() {
		src = event.toElement;
		if (src.tagName == "A") {
			src.oldcol = src.style.color;
			src.style.color = "#FFCC00";

		}
	}
	function makeNormal() {
		src = event.fromElement;
		if (src.tagName == "A") {
			src.style.color = src.oldcol;
		}
	}
	function action() {
		document.body.style.backgroundImage = "url(images/filmstreifen537anim.gif)";
	}	
	function stop() {
		document.body.style.backgroundImage = "url(images/filmstreifen537.gif)";
	}