<!--

	///////////////////////////////////////////////
	// JavaScript for mouseover effect of submenu
	///////////////////////////////////////////////

	var imagesSupported = ((navigator.appName == 'Netscape' && parseInt(navigator.appVersion) >= 3) || (navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) >= 4));;

	function regularImageFile(imageName) {
	  return("/images/submenus/" + imageName + ".gif");
	}

	function highlightImageFile(imageName) {
	  return("/images/submenus/" + imageName + "_over.gif");
	}

	function highlightMapImageFile(imageName) {
	  return("../images/" + imageName + "_globe.gif");
	}

	function cacheImages(index) {
	  regularImageObjects[index] = new Image;
	  regularImageObjects[index].src =
	    regularImageFile(imageNames[index]);
	  highlightImageObjects[index] = new Image;
	  highlightImageObjects[index].src =
	    highlightImageFile(imageNames[index]);
	}

	if (imagesSupported) {
	
	//////////////////////////////////////////////////
	// change imageNames according to submenu for
	// the specific page
	//////////////////////////////////////////////////
	
	  imageNames = new Array("about");
//,"compsuccess","careers","compoffices","compir","compemail","aboutprecisecom","corpprofile","analyst","management","secfilings","audioarchives","stockquote","faq","stockchart","calendar","fundamentals","emailalerts","newsreleases","inforequest","ppslink","enterprise","insight","foresight","sql","interpoint","pulse","swift-e","tuningtips","aboutpps","remote","training","pressreleases","newssuccess","newspress","newsir","usseminars","partnersarea","internationl","asvsi","securearea","techpartners","becomeapartner","contactemail","contactoffices","contactparnters","contactir","contactsupport"
	  regularImageObjects = new Array(imageNames.length);
	  highlightImageObjects = new Array(imageNames.length);


	  for(var i=0; i<imageNames.length; i++)
	    cacheImages(i);
	}

	function highlight(imageName) {
	  if (imagesSupported) 
//	    document.images[imageName].src = highlightImageFile(imageName);
  		if (imageName == "americas" || imageName == 'asiapacific' || imageName == 'europe')
			document.images['globe'].src = highlightMapImageFile(imageName);
	    else {
			document.images[imageName].src = highlightImageFile(imageName);
		}

	}

	function unHighlight(imageName) {
	  if (imagesSupported)
	    document.images[imageName].src = regularImageFile(imageName);
	}

// -->
