// iPhone and iPad detection 
var isiPad   = navigator.userAgent.match(/iPad/i) != null;
var isiPhone = navigator.userAgent.match(/iPhone/i) != null;
	
if( isiPad || isiPhone ) 
	location.href = "mobile/";
