$(document).ready(function(){	var html;	html = $.ajax({	  url: "offerte.php",	  async: false, 	  beforeSend: function(){$("#loading").show("fast");},	  complete: function(){$("#loading").hide("fast");},	  success: function(html){ $("#content").show("fast");$("#content").html(html);}	 }).responseText;	$('#menu a').click(function() {						var id = $(this).attr("title");						html = $.ajax({							method: "get", url: "offerte_dettaglio.php", data: "id="+id,							beforeSend: function(){$("#content").html(""); $("#loading").show("fast");},							complete: function(){$("#loading").hide("fast");},							success: function(html){$("#content").show("fast");$("#content").html(html);}						});					});});function dettaglioOfferta(id){	$.ajax({		method: "get", url: "offerte_dettaglio.php", data: "id="+id,		beforeSend: function(){$("#content").html(""); $("#loading").show("fast");},		complete: function(){$("#loading").hide("fast");},		success: function(html){$("#content").show("fast");$("#content").html(html);}	});}
