(function($) {
$(function() {
$(document).ready(function() {

	$('#form1').submit(function(){
		
		response = $("input[name = 'opinion']:checked");
            //alert(response.val());
 		//alert(response.attr("group"));              
          
		$.ajax({ 
                  url: "/vote_response/",
			type: "POST",  
                  cache: true,
				  data :({opinion : response.val(), group: response.attr("group")}),
				  dataType : "html",
                  success: function(html){ 
                       //alert(html);
                       $('#problem').html(html);
                    }  
                });
				return false;
				
	});
	})
})
})(jQuery)
