	
	
	
	
	// iPad
	
	if((navigator.userAgent.match(/iPad/i)))
	{
		//Set meta tag
		 document.write('<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>');
		 //document.write(' <link rel="stylesheet" type="text/css" media="all and (orientation:landscape)" href="assets/css/landscape.css">');
	}
	
	
	// iPhone
	
	if((navigator.userAgent.match(/iPhone/i))) 
	{
		//Set meta tag
		//document.write('<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1; user-scalable=1;"/>');
		document.write('<link rel="stylesheet" type="text/css" href="http://acuprolo.com/wp-content/themes/acuprolo/assets/css/iphone.css"/>');
		//document.write(' <link rel="stylesheet" type="text/css" media="all and (orientation:landscape)" href="assets/css/iphone_landscape.css">');
		//Hide Address bar
		addEventListener('load', function() { setTimeout(hideAddressBar, 0); }, false);
		function hideAddressBar() { window.scrollTo(0, 1); }
	}
	
	function updateOrientation(){
		//Hide Address bar
		window.scrollTo(0, 1);
	}
