
	if (document.all){}
	else document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove=mouse;
	
	function mouse(e)
	{
		if (navigator.appName == 'Netscape'){
			xcurs = e.pageX;
			ycurs = e.pageY;
		} else {
			xcurs = event.clientX;
			ycurs = event.clientY;
		}
	
		if (document.getElementById('position'))
		{
			document.getElementById('position').style.left = (xcurs+10)+'px';
			document.getElementById('position').style.top = (ycurs+30)+'px';
		}
	}
	
	function imagem(acao,imagem){
		if (navigator.appName == 'Netscape')
			$("#position").css({'position':'absolute'});
		else
			$("#position").css({'position':'fixed'});
		
		if (acao == 1){
			$("#position").css({'margin-top':'-150px', 'margin-left':'-350px'}).html("<strong style='font-size:15px;position:absolute;z-index:0;'>Carregando...</strong><img src='"+imagem+"' style='border:1px solid #DDD;position:absolute;z-index:1;' />").show();
		} else {
			$("#position").html("").hide();
		}
	}

$(document).ready(function() {
	mouse();
});

