 function mymove()
 {
 L0.style.top=document.body.scrollTop;
 L0.style.left=0;
 setTimeout("mymove();",0)
 }

document.write("<div id=L0 style='position: absolute;width:180;top:0;left:0;visibility: visible;z-index: 1'><img src=images/logo2.gif width=180 height=50></div>");
mymove();
function over(e,o){
	this.hlNow = e;
	this.bgNow = document.all(e).style.background;
	document.all(e).style.background = "#42B4FF";
	o.style.color = "#FFFFFF";
}

function  out(e,o){
	document.all(e).style.background = this.bgNow;
	o.style.color = "#FFFFFF";
}
