function mouseOver(){
	var vSrc = window.event.srcElement;
	if (vSrc.tagName == "A") {
	vSrc.style.color = "#00FF00";
	window.event.cancelbubble == true;
	}
}
function mouseOut() {
	var vSrc = window.event.srcElement;
	if (vSrc.tagName == "A") {
	vSrc.style.color = "";
	window.event.cancelbubble == true;
	}
}
document.onmouseover = mouseOver;
document.onmouseout = mouseOut;
document.write('<body background="stromabkg.jpg" topmargin="0" leftmargin="0" link="#000000" vlink="#000000" alink="#000000" style="font-family: Tahoma">');






