$(document).ready(function(){
	$.ajax({
			  type:'POST',
			  url:'ita/webproduct.php',
			  data:'op=menusxindex&cid=0',
			  dataType:'html',
			  //timeout: 1000,
			  success: function(msg){
				$('#menuprodotti').html(msg);
				}
			})
});

function ajaxMenu(cid)  {
  if($('#menu'+cid).html()=='') {		
	$.ajax({
			  type:'POST',
			  url:'ita/webproduct.php',
			  data:'op=menusxindex&cid='+cid,
			  dataType:'html',
			  //timeout: 1000,
			  success: function(msg){
				$('#menu'+cid).html(msg);
				}
			})
  } else
	 $('#menu'+cid).html('');
}