$(document).ready(function(){
	
	$('.ratepost').each(function(){
		var ratepost = $(this);
	
		ratepost.find('a').each(function(i){
			var click = $(this);
			
			click.click(function(){
				var num = parseInt(ratepost.find('#cntpostrate b').html());
				var rv = 0;
				
				if (i==0)
					{
					rv = -1;
					num--;
					ratepost.find('#cntpostrate b').html(num);
					}
				else if (i==1)
					{
					rv = 1;
					num++;
					ratepost.find('#cntpostrate b').html(num);
					}
					
				ratepost.find('a').unbind('click');	
				ratepost.find('a').parent().html('&nbsp;');
				ratepost.find('.apost3-1').hide();
				ratepost.find('.apost3-3').hide();
				
				var postId = parseInt(ratepost.attr('id').replace('ratepost',''));
				
				$.post('/ajax/',{act: 'setrate', postId: postId, rateVal: rv},function(){});
					
				return false;
				});
			});		
		});
	});
