function detectIpod() {
	return navigator.userAgent.match(/iPad/i) != null;
}
	
function detectIphone() {
	return navigator.userAgent.match(/iPhone/i) != null;
}
	
if(!detectIpod() && !detectIphone()) {
	if (swfobject.hasFlashPlayerVersion("9")) {
		var fn = function() {
			swfobject.embedSWF("new.swf", "navflash", "760", "48", "9.0.0");
		}; 
	} else {
		var fn = function() {
			var r = confirm("Your Flash Player seems to be out of date. Would you like to update your Flash Player?");
			if(r==true) {
				window.open("http://get.adobe.com/flashplayer/");
			}
		}
	}
	swfobject.addDomLoadEvent(fn);
}
