//	MOBILE METHODS
// 	Created by JABOSiTES LLC 
//	http://www.jabosites.com 
//
//	Copyright 2009 JABOSiTES LLC 
//	All Rights Reserved

var	site_url		= "http://www.glenngarber.com/";
var mobile_dir		= "mobile/";
var cookie_name		= "_mobile_off";

// Redirect for mobile devices
if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) {
	
	if (document.cookie.indexOf(cookie_name) == -1)	window.location = site_url + mobile_dir;
	
}