function debug(msg) {
	alert(msg);
}
 
// Detecta iPhone e iPod
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/BlackBerry/i)))
{
location.replace("http://www.celsomartins.com/iphone");
}
/*else if (navigator.userAgent.match(/iPad/i))
{
location.replace("http://www.celsomartins.com/ipad");
}
else if (navigator.userAgent.match(/Android/i))
{
location.replace("http://www.celsomartins.com/android");
}
else
{
//location.replace("http://www.celsomartins.com/");
}*/
