//Initialisation
$(document).ready(function(){
	
	//Lance le code d'initialisation de la page
	try {
		JS_Page_Load();
	}catch(err) { }		
	
	
});	
	
function JS_Page_Load()
{
	//Version mobile
    var tMobile_Agent = ['iphone', 'ipod', 'series60', 'windows phone os', 'android', 'windows ce', 'blackberry', 'palm', 'zunewp7'];
	var User_Agent = navigator.userAgent.toLowerCase();

	for(i=0; i<tMobile_Agent.length; i++)
	{
		if (User_Agent.indexOf(tMobile_Agent[i]) != -1)
		{
			if (confirm('Souhaitez-vous consulter le site avec la version mobile ?'))
			{
				document.location.href = 'http://m.mediasavoie.com/';
			}
			break;
		}
	}	
}
	

