function isMobile() {
	
	var index = navigator.appVersion.indexOf("Mobile");
	return (index > -1);
}


