function iOSDetect(){
	if(document.cookie.indexOf('sessionid7') == -1){
		iPhoneAlert();
		document.cookie='sessionid7 = 0';
	}
}
function iPhoneAlert() {
	if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPad/i))){
		var question = confirm("Would you like to download our free iPhone app?")
		if (question){
			window.location = "http://itunes.apple.com/app/new-lifestyles/id413512758?mt=8";
		}else{
			window.location = self.location;
		}
	}
}
