function storeCommento(articolo,utente){
	var testo=$("textarea[@name='commento']").val();
	$.ajax({
		type: "post",
		url: "/moduli/bacheca/commenti",
		data: "articolo="+articolo+"&utente="+utente+"&testo="+testo,
		success: function(msg){
			$("#commenti").html(msg);
			$("#commento_form").html("");
		}
	});
}


function switchBox(id){
	var a=$('#'+id).attr('class').split(' ');
	for (indice in a) {
		if (a[indice] == 'hide'){
			$('#'+id).addClass("show");
			$('#'+id).removeClass("hide");
			$('#'+id).fadeIn("slow");
			$('#show_hide').html("Nascondi i commenti ");
			break;
		}
		if (a[indice] == 'show'){
			$('#'+id).addClass("hide");
			$('#'+id).removeClass("show");
			$('#'+id).fadeOut("slow");
			$('#show_hide').html("Visualizza i commenti ");
			break;
		}
	}	
}

$(document).ready(function (){ 
		$("#marquee").marquee(); 
}); 
