var iPhoneRedirect = {
	go: function(url) {
		if (navigator.userAgent.match(/iPhone/i)
			|| navigator.userAgent.match(/iPod/i)) {
			
			document.addEventListener("DOMContentLoaded",
				function() {
					if (! jaaulde.utils.cookies.get("iPhoneRedirect")) {
						jaaulde.utils.cookies.set("iPhoneRedirect", "1");
						window.location = url;
					}
				},
				false
			);
			
		}
	}
};

