//jQuery.get("http://www.nc-net.or.jp/shared/js/nclog.php", {"ref": encodeURI(document.referrer)},function() {});

jQuery(document).ready(function(){
	var trac_url = location.protocol+'//www.nc-net.or.jp/shared/js/nclog.php';
	jQuery.ajax(
	  { type : 'get'
	  , url : trac_url
	  , data : { ref : encodeURI(document.referrer)}
	  , dataType: 'JSon'
	  , success : function (data, success) {}
	  , error : function (xhr, status, e) {}
	});
});


