// Funções do menu
function troca(x) {
		document.getElementById(x).className = 'item_menu_muda';
}
function troca1(x) {
	document.getElementById(x).className = 'item_menu_p_muda';
}
function troca2(x) {
	document.getElementById(x).className = 'item_menu_u_muda';
}
function troca3(x) {
	document.getElementById(x).className = 'item_menu_insc_muda';
}
function distroca(x) {
	document.getElementById(x).className = 'item_menu';
}
function distroca1(x) {
	document.getElementById(x).className = 'item_menu_p';
}
function distroca2(x) {
	document.getElementById(x).className = 'item_menu_u';
}
function distroca3(x) {
	document.getElementById(x).className = 'item_menu_insc';
}

//$(document).ready(function() {
//	$('div.item_menu').hover(function() { // Quando o mouse passar sobre o link
//		$(this).animate({ paddingBottom: '20px' },200);
//	}, function() { // Quando o mouse sair de cima do link
//		$(this).animate({ paddingBottom: '10px' }, 200);
//	});
//	$('div.item_menu_p').hover(function() { // Quando o mouse passar sobre o link
//		$(this).animate({ paddingBottom: '20px' },200);
//	}, function() { // Quando o mouse sair de cima do link
//		$(this).animate({ paddingBottom: '10px' }, 200);
//	});
//	$('div.item_menu_u').hover(function() { // Quando o mouse passar sobre o link
//		$(this).animate({ paddingBottom: '20px' },200);
//	}, function() { // Quando o mouse sair de cima do link
//		$(this).animate({  paddingBottom: '10px' }, 200);
//	});
//});
