$(document).ready(function() {
	$("div.Top3Buttons a.Btn1").click(function() {
		$.get('ajax/vote.php', {vote: 1});
		$("div.Top3Buttons").fadeOut(200);
		return false;
	});

	$("div.Top3Buttons a.Btn2").click(function() {
		$.get('ajax/vote.php', {vote: 2});
		$("div.Top3Buttons").fadeOut(200);
		return false;
	});

	$("div.Top3Buttons a.Btn3").click(function() {
		$.get('ajax/vote.php', {vote: 3});
		$("div.Top3Buttons").fadeOut(200);
		return false;
	});
});

