//checking to see if it's an iphone and shortening the title to be iphone appropriate
if(navigator.userAgent.indexOf("iPhone") != -1){
	document.title = "PNA";
	//should this only happen on the homepage?
}





















