// JavaScript Document
if(screen.width < 600){
document.location = "http://www.gufos.com.br/mobile/"; 
}
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1)) { 
alert('IPhone!!!'); //Essa linha redireciona você para o endereço que você colocar document.
location = "http://www.gufos.com.br/mobile/"; 
}

