jQuery(document).ready(function()
{
	jQuery("a.vote_up").click(function(){
		the_id = jQuery(this).attr('id');
		user_id = jQuery(this).attr('name');
		jQuery(this).parent().html("");
		

		
		// ajax - запрос
		jQuery.ajax({
				type: "POST",
				data: "action=vote_up&id="+jQuery(this).attr("id")+"&name="+jQuery(this).attr('name'),
				url: "votes.php"
			});
			jQuery('#gb_text_action').text('Идешь? Ты идешь!');
			var count = parseInt(jQuery('#gb_count_yes').text());
			jQuery('#gb_count_yes').text(count+1);
			alert("Спасибо за Ваш выбор!");
		});
	
	jQuery("a.vote_down").click(function(){
		the_id = jQuery(this).attr('id');
		user_id = jQuery(this).attr('name');
		jQuery(this).parent().html("");
		

		jQuery.ajax({
				type: "POST",
				data: "action=vote_down&id="+jQuery(this).attr("id")+"&name="+jQuery(this).attr('name'),
				url: "votes.php"
				
			});
			jQuery('#gb_text_action').text('Идешь? Ты не идешь!');
			var count = parseInt(jQuery('#gb_count_no').text());
			jQuery('#gb_count_no').text(count+1);
			alert("Спасибо за Ваш выбор!");
		});
});
