function autoSelect(){
	
	
	var sPath = window.location.pathname;
//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

if(sPage.length == 0){
	sPage = "default.php";
}
var country = "";


//detect what country
if(sPage.indexOf('us') != -1 || sPage.indexOf('default') != -1 ){
	country="_us";
	document.getElementById('press_submenu_us').src = "../images/press_submenu_us_f2.gif";
	
} else if(sPage.indexOf('japan') != -1 || sPage.indexOf('asia') != -1) {
	country="_asia";
	
	document.getElementById('press_submenu_asia').src = "../images/press_submenu_asia_f2.gif";
	
} else {
	country="_everywhere_else";	
	
	document.getElementById('press_submenu_everywhere').src = "../images/press_submenu_everywhere_f2.gif";
}

	
	document.write('<object id="pressSelector" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="323" height="544">');
  document.write('<param name="movie" value="../swf/article_selector' + country + '.swf?_tgtF=' + sPage + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="opaque" />');
	document.write('<param name="swfversion" value="9.0.45.0" />');
  document.write('<param name="expressinstall" value="/Scripts/expressInstall.swf" />');
 document.write('<!--[if !IE]>-->');
 document.write('<object type="application/x-shockwave-flash" data="../swf/article_selector' + country + '.swf?_tgtF='+ sPage + '" width="323" height="544">');
 document.write('<!--<![endif]-->');
 document.write('<param name="quality" value="high" />');
 document.write('<param name="wmode" value="opaque" />');
 document.write('<param name="swfversion" value="9.0.45.0" />');
 document.write('<param name="expressinstall" value="/Scripts/expressInstall.swf" />');
 document.write('<div>');
 document.write('<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>');
 document.write('<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>');
 document.write('</div>');
 document.write('<!--[if !IE]>-->');
  document.write('</object>');
 document.write('<!--<![endif]-->');
 document.write('</object>');
 
}


