$(function(){
	var result = [];
	$("ul.pagingArea li a").each(function(index, data) {
		result[index] = data;
		var url = result[index];

		if(location.href.match("http") ){
			$(result[index]).attr("href", url + "#dendopoeple");
			// console.log(location.href);
		} 
		if(location.href.match("https") ) {
		//	console.log(location.href);
			this.href = this.href.replace(/http/,'https');
			$(result[index]).attr("href", url);
		}
	});
});

