// JavaScript Document
$(document).ready(function() {
	$('div[class="menu_item"]').hover(function(){
		   $(this).addClass('menu_item_hover');
	}, function() {
		   $(this).removeClass('menu_item_hover');
	});
});

function news_ok(){
	$('#news_table').fadeOut("slow", function(){$('#news_ok').fadeIn("slow")});	
}
function fechar(){
	if(document.getElementById("popup_ctn")!=null){
		document.getElementById('main_ctn').removeChild(document.getElementById("popup_ctn"));
	}
}