function dorate(id,n)
{
	$.post('/ajax/rating.php', {rating: n, id: id}, dorateSuccess)
}

function dorateSuccess(data)
{
	$('.rateth').text('Спасибо!');
}

$(document).ready(function() {
	$(".rateth img").css({ opacity: 0.8 });
	$(".rateth img").live('mouseover', function() {$(this).css({ opacity: 1 });} );
	$(".rateth img").live('mouseout', function() {$(this).css({ opacity: 0.8 });} );
});

