$(document).ready
(
	function()
	{		
		$("a[@href=#]").click(function(){return false;});
		
		$('.text_carr#num').setMask({mask : '999'});
		
		/*EFEITO DA TABELA*/
		$('.registro').mouseover
		(
			function()
			{
				$(this).addClass('jan_det_o');
			}
		)
		.mouseout
		(
			function()
			{  
			  $(this).removeClass('jan_det_o');
			}
		);	
	}
);
