function imgRollover(thisImage,state) {
	var imgSrc = thisImage.src;
	if (imgSrc.indexOf('_over') != -1 && state == 'off') {
		// Reset Image
		var cutPos = thisImage.src.indexOf('_over');
		var imgNewSrc = imgSrc.substring(0,cutPos);
		imgNewSrc = imgNewSrc+".gif";
		thisImage.src = imgNewSrc;
		
	} else if (imgSrc.indexOf('_over') == -1 && state == 'on') {
		// Highlight Image
		var cutPos = thisImage.src.indexOf('.gif');
		var imgNewSrc = imgSrc.substring(0,cutPos);
		imgNewSrc = imgNewSrc+"_over.gif";
		thisImage.src = imgNewSrc;
	}
}

function getHTTPObject() {
	var xmlhttp;
	
	/*@cc_on @*/
	/*@if (@_jscript_version >= 5)
	// JScript gives us Conditional compilation, we can cope with old IE versions.
	// and security blocked creation of the objects.
	 try {
	  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	 } catch (e) {
	  try {
	   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	  } catch (E) {
	   xmlhttp = false;
	  }
	 }
	@end @*/

	if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
		try {
			xmlhttp = new XMLHttpRequest();
		} catch (e) {
			xmlhttp = false;
		}
	}
	return xmlhttp;
}

// Image Preloading
Image1 = new Image();
Image1.src = "images/menu_top_shareholders_over.gif";
Image2 = new Image();
Image2.src = "images/menu_top_contact_us_over.gif";
Image3 = new Image();
Image3.src = "images/menu_top_directors_over.gif";
