// Core object start
if (typeof window != "undefined") {
	if (typeof window.hosting == "undefined") {
		window.gabia = {};
	}
} else {
	if (!gabia) {
		gabia = {};
	}
}

//¸ð¹ÙÀÏ ÆÇ´Ü Å¬·¡½º
gabia.moble_checker = function () {
	this.isMobile = (screen.width <= 960);

	this.mobile_domain = "";
	this.mobile_index = "/home/main/m.php";

	this.checkClient = function() {
		if (this.isMobileDomain() || this.isMobile) {
			var url = "http://" + this.mobile_domain + this.mobile_index;
			location.href = url;
		}
	}

	this.isMobileDomain = function () {
		if (this.mobile_domain.toLowerCase() == location.host.toLowerCase()) {
			return true;
		} else {
			return false;
		}
	}
}
