var mobileHome = "http://www.normanorenstein.com/mobile/index.php";

if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
   location.replace(mobileHome);
} else if (screen.width < 800) {			
	window.location = mobileHome;
}
