jQuery(function(){

	/*
	 * 相互リンク出力
	 *------------------------------
	 */

	jQuery.ajax({
		type: "get",
		url: '/common/index_link.php',
		cache: false,
		dataType: "html",
		success: function(data){
			jQuery("p#links").html(data);
		}
	});
});

