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

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