function loadPerfil(id,obj){
	$.ajax({
		 type: "GET",
		 url: "../../SHAREDDATA/XML/perfil.xml",
		 dataType: "xml",
		 success: function(xml) {
			$("#contPerfil").empty();
			$("#contPerfil").html($(xml).find("perfil[@id='"+id+"']").find("desc").text());
			/*
			var strTemp = "";
			$(xml).find("perfil[@id='"+id+"']").find("links").find("lnk").each(function(){
				strTemp += '<p><a href="' + $(this).text() + '" title="'+ $(this).attr("id") +'">' + $(this).attr("id") + '</a></p>';
			});
			$(".sombra > div").empty();
			$(".sombra > div").html(strTemp);
			*/
		 }
	 });
	 $(".abasPerfil li").removeClass("on");
	 $(".abasPerfil li."+obj).addClass("on");
}