<!-- Begining
// ------------------------------------------------------------------------

// Determine the current language.
var lang = determine_language();
var lang_suffix = [];
lang_suffix["en_US"] = "";
lang_suffix["ja_JP"] = "_jp";

if (document.images) {
	
	var suffix = lang_suffix[lang];
	
	if (!suffix) suffix = lang_suffix["en_US"]; // English images for rollover.
	
		Img_1 = new Image 
		Img_1.src="/Images/nav_bar_home_off" + suffix + ".gif"
		Img_1Alt = new Image
		Img_1Alt.src="/Images/nav_bar_home_on" + suffix + ".gif"
		
		Img_2 = new Image 
		Img_2.src="/Images/nav_bar_products_off" + suffix + ".gif"
		Img_2Alt = new Image
		Img_2Alt.src="/Images/nav_bar_products_on" + suffix + ".gif"
		
		Img_3 = new Image 
		Img_3.src="/Images/nav_bar_features_off" + suffix + ".gif"
		Img_3Alt = new Image
		Img_3Alt.src="/Images/nav_bar_features_on" + suffix + ".gif"
		
		Img_4 = new Image 
		Img_4.src="/Images/nav_bar_download_off" + suffix + ".gif"
		Img_4Alt = new Image
		Img_4Alt.src="/Images/nav_bar_download_on" + suffix + ".gif"
		
		Img_5 = new Image 
		Img_5.src="/Images/nav_bar_licensing_off" + suffix + ".gif"
		Img_5Alt = new Image
		Img_5Alt.src="/Images/nav_bar_licensing_on" + suffix + ".gif"
		
		Img_6 = new Image 
		Img_6.src="/Images/nav_bar_purchasing_off" + suffix + ".gif"
		Img_6Alt = new Image
		Img_6Alt.src="/Images/nav_bar_purchasing_on" + suffix + ".gif"
		
		Img_7 = new Image 
		Img_7.src="/Images/nav_bar_support_off" + suffix + ".gif"
		Img_7Alt = new Image
		Img_7Alt.src="/Images/nav_bar_support_on" + suffix + ".gif"
		
		Img_8 = new Image 
		Img_8.src="/Images/nav_bar_contact_off" + suffix + ".gif"
		Img_8Alt = new Image
		Img_8Alt.src="/Images/nav_bar_contact_on" + suffix + ".gif"

}
/*The below function performs the actual rollovers in the 
document and appears AFTER the above code*/

function chgImage (imgName,newImg ) {
	if (document.images) {
		document[imgName].src=eval(newImg+".src")
	}  //end if
} //end function



// ------------------------------------------------------------------------
//  End -->
