

if (
	(
		navigator.userAgent.match(/iPhone/i)
		|| navigator.userAgent.match(/iPod/i)
		|| navigator.userAgent.match(/n95/i)
		|| navigator.userAgent.match(/mobile/i)
		||navigator.userAgent.match(/(windows ce; ppc;|windows ce; smartphone;|windows ce; iemobile)/i)
		||navigator.userAgent.match(/android/i)
		||navigator.userAgent.match(/blackberry/i)
		||navigator.userAgent.match(/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|pda|psp|treo)/i)
		||navigator.userAgent.match(/opera mini/i)
		||navigator.userAgent.match(/(palm os|palm|hiptop|avantgo|plucker|xiino|blazer|elaine)/i)
	)
	&& 
	(
		!window.location.href.match(/mobile/i)
	)
)
{
window.location.href = "mobile/";
}
