$().ready(function() {
	$('.action-group .arrow_up').click(function() {
		$(this).parent().find('.rating-bubble').load($(this).attr('href'));
		$(this).addClass('active');
		$(this).parent().find('.arrow_down').removeClass('active');
		return false;
	});
	
	$('.action-group .arrow_down').click(function() {
		$(this).parent().find('.rating-bubble').load($(this).attr('href'));
		$(this).addClass('active');
		$(this).parent().find('.arrow_up').removeClass('active');
		return false;
	});
});
