jQuery.noConflict();
function navcal(mese_jq,anno_jq){
 jQuery(document).ready(function(){
   jQuery("#calendario").fadeTo('slow',0.5);
   jQuery.ajax({
     type: "GET",
     url: "/calendario-eventi.php",
     data: {mese: mese_jq, anno: anno_jq}, 
     success: function(msg){
      jQuery("#calendario").html(msg);
	  jQuery("#calendario").fadeTo('slow',1);
     }
   });
 });
}
function pagine(divda,pagina,art){
 jQuery(document).ready(function(){
   jQuery("#"+divda).fadeTo("fast",0.5);
   jQuery.ajax({
     type: "GET",
     url: "/"+divda+".php",
     data: "pag="+pagina+"&idarticolo="+art,
     success: function(msg){
      jQuery("#"+divda).html(msg);
      jQuery("#"+divda).fadeTo("fast",1);
     }
   });
});
}

