$(function() {
	$('#votes').hover(
		function() {$('#votes').addClass('current');},
		function() {$('#votes').removeClass('current');}
	);
});

function vote(id) {
	$.ajax({
		type : 'post',
		url : '/request/vote/' + id,
		dataType : 'xml',
		data : null,
		success : function(xml) {
			if (parseInt($(xml).find('result').text())) {
				$('#votes span').text(parseInt($('#votes span').text()) + 1);
			}
		},
		error : function(xml, e) {
			alert(e);
		}
	});
	
	$('#votes div').text('您已评价，谢谢！');
}