$(function(){		   

	$("select[multiple]").each(function(){
		var ob = $(this).attr('id');

		if($(this).attr('id') != 'menu'){

			$(this).asmSelect({
					/*sortable: true,*/
					animate: true,
					addItemTarget: 'top',
					highlight: true,
					buildingSelect: false,
					removeLabel: 'rimuovi',
					highlightAddedLabel: 'Aggiunto: ',				// Text that precedes highlight of added item
					highlightRemovedLabel: 'Rimosso: '			// Text that precedes highlight of removed item
				});
		}else{
			$(this).asmSelect({
				/*sortable: true,*/
					animate: true,
					addItemTarget: 'top',
					highlight: true,
					buildingSelect: false,
					listOne:true,
					removeLabel: 'rimuovi',
					highlightAddedLabel: 'Aggiunto: ',				// Text that precedes highlight of added item
					highlightRemovedLabel: 'Rimosso: '			// Text that precedes highlight of removed item
				});
		}
		
		
		
		$(this).change(function(e, data) {

			// add a little note at the top that said what was done
			$("#changes").prepend("<li>" + data.type + ": " + data.value + "</li>"); 

			// if it's a sort or an add, then give it a little color animation to highlight it
			if(data.type != 'drop') data.item.animate({ 'backgroundColor': '#ffffcc' }, 20, 'linear', function() {
				data.item.animate({ 'backgroundColor': '#dddddd' }, 500); 
			});
						//calcolo preventivo
			var form = $('#formcontatti').serialize();		
		

			/*
			$.post("js/calcolaPreventivo/query.php",{dati: form}, function(j){
				$("#formcontatti input[name='importo']").val(); 			
				$("#formcontatti input[name='importo']").val(j);
			})*/
				
		
		});
	
		
		
	});

});





  

