// Detectar Agente de Usuário


if (navigator.userAgent.indexOf("IE 6") != -1){
	window.location = "update";
}

if ((navigator.userAgent.indexOf('iPhone') != -1) ||
	(navigator.userAgent.indexOf('iPod') != -1)) {  
	document.location = "http://www.bytecbrasil.com.br/iphone";
}




// Girar iPhone

function updateOrientation(){  
	var contentType = "show_";  
	switch(window.orientation){  
		case 0:  
		contentType += "normal";  
		break;  
		
		case -90:  
		contentType += "right";  
		break;  
		
		case 90:  
		contentType += "left";  
		break;  
		
		case 180:  
		contentType += "flipped";  
		break;  
	}  
	
	document.getElementById("page_wrapper").setAttribute("class", contentType);
}



// Sem Barras

window.addEventListener("load", function() { setTimeout(loaded, 100) }, false);  

function loaded() {  
	document.getElementById("page_wrapper").style.visibility = "visible";  
	window.scrollTo(0, 1);
}

