/* 
	para  DESABILITAR o debug basta trocar o nome da classe 
	'debug' para qualquer outra coisa
*/

.debug_off { 
	behavior:expression(
		("debug_hover" in window) 
		?window.debug_hover.call(this) 
		:window.debug_hover= 
			function(){;					
				this.runtimeStyle.behavior="none"; 
				this.onmouseover = function(){
					this.className="hover";						
					this.style.border = '1px dotted #ff0000';
					obj = window.document.getElementById('debugOutput');
					obj.innerHTML = this.id; 
					obj.style.display = 'block';
					obj.style.position = 'absolute';
					obj.style.zIndex = 999;
					obj.style.top = (event.clientY - 30) + 'px';
					obj.style.left = (event.clientX - 60) + 'px';

				}; 
				this.onmouseout = function(){
					this.className="";						
					this.style.border = '0px';
					obj = window.document.getElementById('debugOutput');
					obj.innerHTML = 'out';
					obj.style.display = 'none';
				};
			}
	);
}	


#debugOutput {
	background-color:#FFFFFF;
    display:none; 
    border: 1px dotted red;
	padding:5px;
    color:red;
    font-weight: bold;
	
}

