$(document).ready(function(){
	
	$('#menu li').each(function(){
		idMenu = $(this).attr('id').replace('menu_','');
		statusClass = $(this).attr('class');
		$(this).children('a').css('background-image','url('+wwwRoot+'/comuni/img/menu/'+idMenu+'.png)').html('');		
	});
	
	$('#menu li:last-child').css('background','none');
	/*
	$('#menu li').mouseenter(function(){
		idMenu = $(this).attr('id').replace('menu_','');
		
		//alert(idMenu)
		$(this).children('a').css('background-image','url('+wwwRoot+'/'+wwwLang+'/img/'+idMenu+'-roll.png)');		
	})
	
	$('#menuLeft #menu li').mouseleave(function(){
		idMenu = $(this).attr('id').replace('menu_','');
		
		statusClass = $(this).attr('class');
		if(statusClass!='selected')
		{
			$(this).children('a').css('background-image','url('+wwwRoot+'/'+wwwLang+'/img/'+idMenu+'.png)');
		}
				
	});
	*/
	

$('#elencoProdotti .prodotto .aggiungiLista').click(function(){
	
	//alert($(this).parent().parent().parent().html());
	
	id        = $(this).parent().parent().parent().attr('id')
	cod_prod  = $('#'+id+' .codice').html();
	prodotto  = $('#'+id+' .titolo').html();
	
	//alert(id+"||"+cod_prodotto+"||"+prodotto);
	
	$.ajax({
	  type:'POST',
	  data:'id='+id+'&cod_prod='+cod_prod+'&prodotto='+prodotto,
	  url: wwwRoot+"/ajax/addList.php",
	  success: function(){
	  	jConfirm('Vuoi aggiungere il prodotto alla lista?', 'Lista prodotti', function(r) {
    		jAlert('Il prodotto è stato aggiunto alla lista', 'Conferma aggiunta prodotto');
		});

	  	

	  }
	});
})	

	
});


