// JavaScript Document
$(document).ready(function(){
	$(".ic_up2").click(function () {
		$(this).prev().val($(this).prev().val()*1+1);
	});
	$(".ic_down2").click(function () {
		if($(this).prev().prev().val()*1-1>=1){
			$(this).prev().prev().val($(this).prev().prev().val()*1-1);
		}
	});
	/*$(".answer").click(function() {
		$.ajax({
			type: "POST",
			url: "/ajax/votes.html",
			data: "act=ajax&id="+$("input:checked[name=rg1]").val(),
			success: function(msg){
				$(".your_opinion").html(msg);
			}
		});
	});*/
});
