if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1))
	window.onload = function() {
		var pElement = document.getElementById("myAudio");
		
		setTimeout(function() {
			pElement.load();
			
			setTimeout(function() {
				pElement.play();
			}, 2250);
		}, 2250);
	};
