// vote by maxiu
function vote(file, point, galleryId) {
	new Ajax.Updater('voting_' + file, 'vote.php', {
		parameters: {
			picture_file: file,
			point: point,
			gallery_id: galleryId
		},
		evalScripts: true
	});
}
