// JavaScript iPhone re-direct from David Walsh http://davidwalsh.name/detect-iphone#about
//Modified by Juewett Bostick Oct 2009
//
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
	 if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://www.nutbutton.com/m-index.html";
}
