jQuery(document).ready(function() {
    var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));  
    if (!mobile) {  
		jQuery(".telnum").click(function(event) {
		event.preventDefault();
		//alert('this action impossible, not viewing via mobile');
		});
    }
});
