$(document).ready(function(){
			
	$('.new-site-voting .like, .new-site-voting .dislike').live({
		'click': function(){
			$.get('/etc/new-site-voting.html', {'a': $(this).attr('rel')})
			$('.new-site-voting').html('<span style="font-weight:bold;color:green">Спасибо за ваше мнение!</span>');
			setTimeout(function(){
				$('.new-site-voting').fadeOut()
			}, 2000)
		}
	})
})
