// 水映互動創意有限公司 版權所有 c 2009 3IN Interactive Idea Inc. All rights reserved.
// http://www.my3in.com -->
var arr_Author = new Array();
var arr_AuthorLink = new Array();
var arr_Date = new Array();
var arr_FriendsNum = new Array();
var	j = 0;
$(document).ready(function(){
	$.ajax({
		type: "GET",
		url: "XML/xml_SKACT3.xml",
		dataType: "xml",
		success: function(xml) {
			$(xml).find('User').each(function(){
				arr_Author[j] 		= $(this).find('Author').text();
				arr_AuthorLink[j] 	= $(this).find('AuthorLink').text();
				arr_Date[j] 	= $(this).find('Date').text();
				arr_FriendsNum[j] 	= $(this).find('FriendsNum').text();
				$('#A3_Author'+j).html("<a href='"+arr_AuthorLink[j]+"'>"+arr_Author[j]+"</a>");
				$('#Date'+j).html(arr_Date[j]);
				$('#FriendsNum'+j).html(arr_FriendsNum[j]);
				j++;
			});
		}
	});
});