function detectTapatalk() {
	if (document.cookie.indexOf("campfire_redirect=false") < 0) {

			if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))  || (navigator.userAgent.match(/iPad/i))) {
				if (confirm("This forum is iOS Native. Upload pictures directly from your device! Click OK to learn more about the FREE app MS.com app.")) {            
					document.cookie = "campfire_redirect=false"; 
					window.location = "http://itunes.apple.com/us/app/ohub-campfire/id415382151?mt=8";



				} else {
					setTapatalkCookies();
				}
			} else if(navigator.userAgent.match(/android/i)) {
				if (confirm("This forum is Android Native. Upload pictures directly from your phone! Click OK to learn more about the FREE app MS.com app.")) {            
					document.cookie = "campfire_redirect=false"; 
					window.location = "market://search?q=pname:com.quoord.tapatalkouthub.activity";
				} else {
					setTapatalkCookies();
				}
			} else if((navigator.userAgent.match(/Symbian/i)) || (navigator.userAgent.match(/Nokia/i))) {
				if (confirm("This forum is Nokia Native! Click OK to learn more about Tapatalk for Nokia.")) {            
					document.cookie = "campfire_redirect=false"; 
					window.location = "http://store.ovi.com/content/22647?clickSource=browse&contentArea=applications";
				} else {
					setTapatalkCookies();
				}
			}
			

	}
}

function setTapatalkCookies() {
	var date = new Date();
	var days = 30;
	date.setTime(date.getTime()+(days*24*60*60*1000));
	var expires = "; expires="+ date.toGMTString();
	document.cookie = "campfire_redirect=false" + expires; 
}

detectTapatalk();

