$(function(){
	$(".mxk2").each(function(){
		var txt = $(this).html();
		if(txt.length>3)
		$(this).html(txt.substring(0,3));
	});
});