
var kq_path = '/index.php/kq/kq_template/';

function onAjaxSuccess(obj)
{
 var inp_ids = ['#ezcoa-312_question', '#ezcoa-313_answer_1', '#ezcoa-362_a1_points', '#ezcoa-314_answer_2', '#ezcoa-363_a2_points', '#ezcoa-315_answer_3', '#ezcoa-364_a3_points', '#ezcoa-316_answer_4', '#ezcoa-365_a4_points', '#ezcoa-366_answer_5', '#ezcoa-367_a5_points']; 

 $.each(obj.attributes, function(i, attribute)
     {
       $(inp_ids[i]).attr('value', attribute.name );
     });
}

$(document).ready(function(){
	$('#tree1').SimpleTree({
		animate: true,
		autoclose:true,
		click:function(el){
			var ids = $(el).attr('id');
     	$.post(
    	kq_path,
    	{
    		id: ids
    	},
    	function(data){
 		var obj = data.substring(0, data.indexOf('<b>Fatal error'));
 		eval( "obj = " + obj );
 		onAjaxSuccess(obj);
    	}
  	);
		}
	});
	
});

