<!-- Check for iPhone/iPod touch -->
function isAppleMobile()
{
	return ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1));
}
   
function init()
{
	if( isAppleMobile() )
	{
		var o = document.getElementById( 'iphone-ipod-notify' );
		o.innerHTML = "<h1 class='iPhoneHeader'><a href='iphone/index.html'>Tap for iPhone/iPod Touch </br>optimized version</a></h1>";
	}
}
