$(function() {
	$('#menu ul > li').mouseover(
		function() {
			$('ul', this).show();
			$(this).addClass('selected');
		}
	).mouseout(
		function() {
			$('ul', this).hide();
			$(this).removeClass('selected');
		}	
	);	
	
	$('.grid').tablesorter();
	
	ajustaFundoRodape();
});

function ajustaFundoRodape() {
	$('#footer .fundo').width($('body').width()).css('left', -($('body').width()-960)/2);	
}

function carregarVoceSabia(tipo_id) {
	$.ajax({
		type:'post', 
		url:'index.php', 
		timeout:90000, 
		data:{
			m: 'voce_sabia',
			tipo_id: tipo_id,
			idAtual: getData('idVoceSabia')
		}, 
		beforeSend: function()
		{
			$('.voce-sabia .retorno').html('<center>aguarde...</center>');
		},
		success: function(data){
			$('.voce-sabia .retorno').html(data);
		} 
	});	
}

function getData(id)
{
	return $('body').data(id);
}

function setData(id, val)
{
	$('body').data(id, val);
}
