var li="lia";

mocs(li);


function Lim(az){
		az.style.backgroundColor="#ff7301";
		az.style.color="#FFF";
}
function Lio(az){
		if(li != az.getAttribute("id")){
			az.style.backgroundColor="#3673a0";
			az.style.color="#FFF";
		}else{
			az.style.backgroundColor="#ff7301";
			az.style.color="#FFF";
		}		
}
function Lic(az){
	if(li != az.getAttribute("id")){
		document.getElementById(li).style.backgroundColor="#3673a0";
		document.getElementById(li).style.color="#FFF";
		li = az.getAttribute("id");
	}
	mocs(li);	
}

function mocs(sid){
	$.ajax({
		url:'/mocserver.jsp',
		type:'post',
		dataType:'text',
		data:'id='+sid+'&date='+new Date(),
		error:function(json){
			//alert("sorry,errors !");
		},
		success:function(text){
			$('#mocserver')[0].innerHTML = text;
		}
	});
}