$(document).ready(function(){
	var api_url = 'http://www.haliboo.com/_201108/api/union_show_stat.php';
	var reg = new RegExp("\/([0-9]+)\/");
	var id_str = '';
	$("a[name='haliboo_post']").each(function(){
		reg.exec(this.href);
		if ( id_str.length ==0 ){
			id_str = RegExp.$1;
		} else {
			id_str += ',' + RegExp.$1;
		}
	});
	var my_href = encodeURIComponent( location.href );
	var img_url = api_url +'?id='+ id_str + '&url=' + my_href;
	var node = $("<img src='"+img_url+"' width='0' height='0' style='position:absolute;top:-1000px;'>");
	$('body').append( node );
});
