function artreit(razd,vote,id) {
	ar = {1:'news',2:'articles',3:'gallery'};
	new Ajax.Request('/'+ar[razd]+'/ajax.reit.html?vote='+vote+'&id='+id, {
		method:'get',
		onSuccess : function(b) {
			$('idRating').update(b.responseText||"ошибка получения данных");
		}
	});
}

