
function getMenu(Menu){
 var params = "Param="+Menu;
 $.ajax({
 type: "POST",
 url: "ajax_home.php",
 data: params,
 success: function(data){
 $("#Conteudo").html(data);	
 $('#Conteudo').find('input:first').focus(); 
}
});	
}
$(document).ready(function() {
 var aLocation = location.href.split("#");
 if(aLocation[1] == undefined){
 	getMenu('Principal');
 }else{
  if(aLocation[1].length > 0){
	 getMenu(aLocation[1]);
  }else{
 	 getMenu('Principal');
  }
 }
});

function download(){
	alert("Em breve disponibilizaremos versões atualizadas ! ");
}   


