function highlight_stars(id, note, do_highlight, label)
{
	for( var i = 1 ; i <= note ; i++ )
	{
		if( do_highlight ) 
			$('#'+id+'_'+i).addClass('ratehover');
		else 
			$('#'+id+'_'+i).removeClass('ratehover');
	}
	$('#'+id+'_label').html(label);
}