﻿if(navigator.userAgent.indexOf('MSIE') > 0){
	window.attachEvent('onload', count);
}else{
	window.addEventListener('load', count, false);
}

function count(){
	
	var request = $.ajax({url:'js/count.php', type:"GET", success:set_count});
	
	return;
	
}

function set_count(count_num)
{
	
	$("#count").html("あなたは"+count_num+"人目　");
	
}
