function sniffiPhone() {
	if (typeof(AC) == "undefined") { AC = {}; }

	AC.Detector = {

		getAgent: function() {
			return navigator.userAgent.toLowerCase();
		},

		isiPhone: function(userAgent) {
			var agent = userAgent || this.getAgent();
			return agent.match(/iPhone/i);
		},

	};

	if (navigator.userAgent.match(/iPhone/i)) {
			 document.getElementById("iphoners").style.display = 'block';
	}

 }