
function initReview () {

	if(document.getElementById("sample_paging")){

		a = document.getElementById("sample_paging").getElementsByTagName("A");

		for (i = 0; i < a.length; i++) {
			a[i].onclick = function () {
				var href = this.href,
					id = "sampleShopList";			

				loading(id);
				Async.send("/common/async/club_sample.asp", function ( send_ ) {
					setTimeout( function () {
						insertNodes(id, send_.responseText, initReview);
					}, random(400, 600));
				}, getQueryString(href));
				return false;
			};
		};
	};

	

	
	
};
initReview();
