$(function () {
	$('.votebutton').each(function () {
		var d = $(this).attr('id');
		if (d.length > 0) {
			$(this).children('img').addClass('cursor').click(function () {
				var b = this;
				var c = d.substr(d.indexOf('-') + 1, d.length);
				$.get('/vote/' + c, '', function (a) {
					if (parseInt(a) != 0) {
						pageTracker._trackPageview("/?vote");
						$('#vs-' + c).empty().hide().html(a).fadeIn('fast').removeAttr('id');
						$(b).attr('src', '/img/btn_whoopzy_off.gif').removeClass('cursor').removeAttr('id').unbind('click').parent('.votebutton').removeAttr('id');
                    }
				})
			})
		}
	})
});