$(document).ready(function(){
	//$("#telefone").mask("(99)9999-9999");
    $("#Codigo").numeric({allow:",."});
})

$(function() {
		   
		   
    $('a').each(function() {
    	
    	var $obj = $(this);
    	var $href = $obj.attr('href');
    	$href = replaceHref($href);
    	
		if($href == $pageHref || ($href == 'index.php' && $pageHref == '')) {
			
			if($obj.hasClass('backgroundPosition')) {
				$obj.css({
					backgroundPosition: 'left bottom'
				});
			} else if($obj.hasClass('fontWeight')) {
				$obj.css({
					fontWeight: 'bold'
				});
			}
			
		}
		
		 });
		
    });
