function setCom(id) {
	var img = '';
	var data="ccid="+id;	
	for ( var i = 0; i < cclassArray.length; i++) {			
		if (cclassArray[i] == id) {
			document.getElementById('Com' + cclassArray[i]).className = 'flmenu_yes';
			document.getElementById('ComBox' + cclassArray[i]).style.display = '';
			if('0'!=id){
				showQuestion(data,id);
			}
		} else {
			document.getElementById('Com' + cclassArray[i]).className = '';
			document.getElementById('ComBox' + cclassArray[i]).style.display = 'none';
		}
	}
}

function showQuestion(data,id){
	jQuery.ajax( {
		url : url+"/ComShow/ajaxCom",
		type : 'POST',
		data: data,//对页面所有input元素进行序列化
		dataType : 'html',
		error : function() {
			alert('Error loading XML document');
		},
		success : function(data) {
			jQuery("#ComBox"+id).html(data);
		}
	});
}
