<!--
if (document.images) {
        //Preload All Images
          img_products=new Image(294,290);
          img_prod_turbine=new Image(294,290);
          img_prod_thermal=new Image(294,290);
          img_prod_industrial=new Image(294,290);
          img_prod_superalloy=new Image(294,290);
          img_products.src='/img/ban/products.jpg';
          img_prod_turbine.src='/img/ban/prod-turbine.jpg';
          img_prod_thermal.src='/img/ban/prod-thermal.jpg';
          img_prod_industrial.src='/img/ban/prod-industrial.jpg';
          img_prod_superalloy.src='/img/ban/prod-superalloy.jpg';
        }
        
//Function to swap images and Display Tip Text
var currentLink;
function showLink(imagename,objectsrc,linkid) {
		  document.images[imagename].src=eval(objectsrc+'.src');
		  
		  //Display Selected Link Tip Text and Hide other text
		  if (currentLink != null) {
         		hideLink();
      		}
		  if (linkid != 'none') {
      		currentLink = linkid;
      		document.getElementById(currentLink+'title').style.visibility = 'visible';
      		document.getElementById(currentLink+'text').style.visibility = 'visible';
			document.getElementById(currentLink).style.color = '#FFFFFF';
         	}

		}
		
function hideLink() {
      	//hide previously selected link
      	
      		document.getElementById(currentLink+'title').style.visibility = 'hidden';
      		document.getElementById(currentLink+'text').style.visibility = 'hidden';
			document.getElementById(currentLink).style.color = '#DEE3B5';
   	}	
   	
 		
//-->
        
