/*
$(".boxvota_link").click(function(event){
    event.preventDefault();
}
*/

function votaNews(id){
	if ($.cookie("mmnews"+id) != "clicked"){
		$.ajax({
                  type: "POST",
                  url: "http://www.milanomarittima.it/remote/public_news.php",
                  data: "op=voteNews&id="+id,
                  success: parseXml   
    	});
	}
}

function parseXml(xml){
	$.cookie("mmnews"+$(xml).find("idnews").text(), "clicked", { expires: 365 });
	$('div.numerovoti_'+$(xml).find("idnews").text()).html( $(xml).find("risultato").text() );
}

