document.write("<img src='http://www.titansd.ro/titanmare.gif' id='titanmare' style='position:absolute;visibility:hidden;top:0;left:0;' border=0>");
var timeout;
function doSomething(e) {



	var posx = 0;
	var posy = 0;
	if (!e) var e = window.event;
	if (e.pageX || e.pageY) 	{
		posx = e.pageX;
		posy = e.pageY;
	}
	else if (e.clientX || e.clientY) 	{
		posx = e.clientX + document.body.scrollLeft
			+ document.documentElement.scrollLeft;
		posy = e.clientY + document.body.scrollTop
			+ document.documentElement.scrollTop;
	}
	// posx and posy contain the mouse position relative to the document
	// Do something with this information

	posy=posy-130;
	posx=posx-160;
	document.getElementById('titanmare').style.top=posy+'px';
	document.getElementById('titanmare').style.left =posx+'px';
	

}


function mousein() {
	timeout=setTimeout("document.getElementById('titanmare').style.visibility='visible'",300);
}

function mouseout() {
	clearTimeout(timeout);
	document.getElementById('titanmare').style.visibility='hidden';
}

document.getElementById('titan').onmousemove=doSomething;
document.getElementById('titan').onmouseover=mousein;
document.getElementById('titan').onmouseout=mouseout;
