
isMobile = function() {
	var a = (navigator.userAgent||navigator.vendor||window.opera);   
	if(screen.width < 650 ||
	 window.innerWidth < 650 ||
	 a.match(/Mini/i)  ||
	 a.match(/Android/i) ||
	 a.match(/webOS/i) ||
	 a.match(/iPhone/i) ||
	 a.match(/iPod/i) ||
	 a.match(/BlackBerry/i)) {
	  return true;
	}
	else{
	  	return false;
	}	
}



showNormal = function() {
	var d = new Date();
	var now = d.getTime();
	if (sessionStorage.lastTime == undefined) {
		sessionStorage.setItem('lastTime',0);
		return false;
	} 
	else {
		if ((now - sessionStorage.lastTime) > 1200000) {
			sessionStorage.removeItem('normal');
			return false;
		}
		else
		{
			return true;
		}
	}
}	

$(document).ready(function(){

	$("#contact-link").live('click', function() {
		//alert('test');
	});
	$("#contact-link").live('click', function() {
	    //alert('test');
	});

	
	if (isMobile() && !showNormal()) { 
	      document.location = "/m_Services.html";  
	}
});


