function noticiasRapidas(){
	$(".noticia-rapida").moveNoticiasRapidas();
}

function slideMoving(){
	$('#slider-capa').slideMoving();
}

function bannerRotate(){
	$('.publicidade-coluna-direita-big').bannerRotate();
}

function ajustaAltura(){
	try{
		col1 = document.getElementById('menu-vertical').offsetHeight;
		col2 = document.getElementById('conteudo').offsetHeight;
		col3 = document.getElementById('coluna-direita').offsetHeight;

		m = 'auto';
		
		if(col3 > col2) m = col3;
		else if(col2 < col3) m = col2;
		
		document.getElementById('menu-vertical').style.height = m + 'px';
		document.getElementById('conteudo').style.height = m + 'px';
		document.getElementById('coluna-direita').style.height = m + 'px';
		
	}catch(err){}

};
