/**
 * @author bhoffmann
 */


	
function castVote($drinkID, $vote)
{
	$.ajax({
	
	type:"POST",
	url: 'http://www.theamarulaexperiment.com/vote/goVote/' + $drinkID + '/' + $vote,
	success: function(msg){
	//alert("DATA SAVED: " + msg);
	
		jAlert( msg, function() {
			$.alerts.dialogClass = null; // reset to default
		});	
	}
	
		
	});
	
}



