$(function(){
	$url = "http://www.onestart.com.hk/admin/ajax/listmessage.php5";
	$category = $(".msg_box").attr("category");
	$lang = $(".msg_box").attr("lang");
	
	if($(".msg_box").attr("order"))
		$order = $(".msg_box").attr("order");
	else
		$order = "asc";
		
	$url+="?category="+$category+"&order="+$order;
	
	//$header = $.trim($(".msg_box").html());
	//$header_str = $(".msg_header").html();

	$.getJSON($url,function($data){		
		$(".msg_box").html("");

		$.each($data,function($key,$msg){
			//$tmp = $($header).html($header_str+"("+($key+1)+")");
			//$(".msg_box").append($tmp);

			if($lang == "zh")
				$(".msg_box").append("<div>"+$msg.chinese+"</div><hr /><br />");
				
			if($lang == "en")
				$(".msg_box").append("<div>"+$msg.english+"</div><br/><hr/><br/>");
		});
	})
});