function vote(type, typeID, stars, callback)
{
	var url = BASE_PATH + "voting/vote/" + type + "/" + typeID + "/" + stars + "/";
	jQuery.getJSON(url, {}, callback);	
}