var Agent = navigator.userAgent.toLowerCase();
var Mobiles = new Array('iphone','ipod','ipad');
var Hash = (window.location.hash) ? window.location.hash.split('#').join('').split('/').join('') : null;
if( Hash != 'no-mobile' ) {
	for(Mobile in Mobiles) {
		if( Agent.indexOf(Mobiles[Mobile]) != -1 ) {
			document.location = "http://m.scottbuckingham.com/";
			break;
		}
	}
}
