// JS do site
	var moveBoxIE6 = function() {
		versao 	= navigator.appVersion;
		posicao	= versao.indexOf('MSIE 6.0');
		if ( eval(posicao) > 0 ) {
			document.getElementById('fixed_div').style.position = 'absolute';
			var offset = 0; // set offset (likely equal to your css top)  
			document.getElementById('fixed_div').style.top = (document.documentElement.scrollTop + document.documentElement.clientHeight + offset - 80) + 'px';
			//document.getElementById('valor').value = document.documentElement.clientHeight;
			
			window.setInterval(move_box, 100);  
		}
	}
	
	$(function() {
		
		//Header
			
			//Acesso Rápido
			$( '#combAcessoRapido' ).bind( 'change', function() {
				var _val = $( '#combAcessoRapido' ).val();
				if ( _val != '' ) {
					$( '#formAcessoRapido' ).attr( 'action', _val ).submit();
				}
			});
		
		//Lateral Direita
		
			//Box Notícias
			$( '#lista' ).cycle( {
				fx: 'scrollVert',
				speed: 'fast',
				timeout: 0,
				prev: '#noticias .pass-up',
				next: '#noticias .pass-down'
			});
			
			if ( $( '#lista' ).children( 'div' ).length == 1 ) {
				$( '#noticias .bottons' ).css( 'visibility', 'hidden' );
			}
		
		//Lateral Esquerda
					
			//Box Comisssões
			
			/*$('#lista-comissoes li').each( function() {
				var $this = $(this);
				var _a = $this.height();
				if ( _a > 36 ) {
					$this.children('a').css( 'font-size', '7.8pt' );
				}
			});*/
		/*
			$('#lista-comissoes li a').vAlign();
			$("#comissoes .lista").jCarouselLite({
				btnPrev: "#comissoes .pass-up",
				btnNext: "#comissoes .pass-down",
				auto: 0,
				speed: 'fast',
				visible: 17,
				scroll: 1,
				vertical: true
			});
		*/
		//Footer
			
			//Avalie Portal
			moveBoxIE6();
		
	});
