function ShowBlue(numero)
{
	$('#star'+numero).attr('src', '/images/starblue'+numero+'.png');
}

function ShowNormal(numero)
{
	$('#star'+numero).attr('src', '/images/star'+numero+'.png');
}

function VoteUnlogged(id, act)
{
	window.location.href = '/?a=Login&t=clubber&from='+id+'&act='+act;
}

function VoteLogged(target, src, rating)
{
	$('#vote_area').html($('#vote_area_wait').html());
	$('#vote_area').load('?a=vote&from='+src+'&to='+target+'&rating='+rating);
	return true;
}