$(function(){
	$.ajax({
		url: '/sale/db/index.cgi?mode=MemberCheck',
		cache: false,
		success: function(json){
			var hash = $.evalJSON(json);
	
			if(hash['login']){
				$('#now_login').show();
			}

		}
	});
});
















