// JavaScript Document
function versionmobile() {
	var mobileBrowser = false;
	if((navigator.userAgent.match(/(iPhone|iPod)/i))){			
		var mobileBrowser = true;
	} else if((navigator.userAgent.match(/(ipad|iPad)/i))){
		var mobileBrowser = true;
	} else if((navigator.userAgent.match(/(blackberry9530|android)/i))){	
		var mobileBrowser = true;
	} 
		
	if(mobileBrowser) {
		if (confirm("Voulez-vous accéder à notre version mobile?")){
			//"Voulez-vous acc&eacute;der &agrave; notre version mobile?"
			document.location.href='http://m.gaspesiejetaime.com/';
		}
	}
}
window.onload = versionmobile;
