/**
 *  Mobile Redirect JS 1.0
 *  by Yongha
 */

var mobileUrl = "http://m.sidiz.com/";

var userAgents = new Array(
	"iPhone", "iPod", "iPad", "iTunes", "BlackBerry", "Android", "Windows CE",
	"LG", "MOT", "SAMSUNG", "SonyEricsson", "Mobile", "AvantGo", "BOLT", "PalmOS",
	"NetFront", "Windows Phone", "hpwOS", "Kindle", "Nintendo Wii", "Nokia"
);

var agent = navigator.userAgent;

var query = window.location.search;

if (query != "?main") {

	for (var ua in userAgents){

		if (agent.match(userAgents[ua]) != null){

			window.location.replace(mobileUrl);
			break;
		}

	}

}

