helpLayer = new Object();
helpLayer.tm=false;
helpLayer.flyArea = document.createElement('DIV');
helpLayer.flyArea.className='helpLayer';
document.body.appendChild(helpLayer.flyArea);


helpLayer.doEvent = function (e){
	window.clearTimeout(helpLayer.tm);
	if( typeof(e)=='undefined' || typeof(e)==null ) { e=event; }
	var eObj = (e.target || e.srcElement);
	var myAlt = eObj.getAttribute('myAlt');
	if( myAlt ){
		var ow = document.body.offsetWidth+document.body.scrollLeft;
		var p2 = parseInt(helpLayer.flyArea.offsetWidth / 2)-18;
		p2 = (p2 < 190) ? 78 : p2;
		var posL =(e.clientX+document.body.scrollLeft) - p2;
		helpLayer.flyArea.style.left=(posL <1 ) ? 1 : (posL+p2 > ow ) ? ow-p2 : posL ;
		helpLayer.flyArea.style.top=e.clientY+document.body.scrollTop+15;
		helpLayer.flyArea.innerHTML= '<table cellpadding="0" cellspacing="0" border="0">'+
		'<tr><td width="191" class="arrow"><div><!-- --></div></td></tr>'+
		'<tr><td width="191" class="text"><div>'+myAlt+'</div></td></tr>'+
		'</table>';
		helpLayer.tm = window.setTimeout("helpLayer.flyArea.style.display='inline';", 200);
		}else{
			if(helpLayer.flyArea.style.display!='none') { helpLayer.flyArea.style.display='none'; }
			}
	}

for(i=0; i<document.images.length; i++){
	var alt = document.images[i].alt;
	if(alt){
		document.images[i].removeAttribute('alt');
		document.images[i].removeAttribute('title');
		document.images[i].setAttribute('myAlt', alt);
		document.images[i].onmousemove=helpLayer.doEvent;
		document.images[i].onmouseout=function () { helpLayer.tm = window.setTimeout("helpLayer.flyArea.style.display='none';", 200); }
		}
	}
