<!--

function hilite(which) {
	which.style.backgroundColor = "#323035";
	which.style.color = "#ffffff";
}
function unlite(which) {
	which.style.backgroundColor = "#3F3C42";
	which.style.color = "#ffffff";
}

var newWindow
function enlarge(which) {
	if(newWindow != null) {
		var newPic = "_images/_photos/" + which;
		newWindow.document.images["pic"].src = newPic;
		newWindow.focus();
	}
	if(newWindow == null) {
		newWindow = window.open("","photosWin", "toolbar=0,status=0,width=350,height=360,resizable=0,scrollbars=0");
		if(newWindow != null) {
			newWindow.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'><title>BLACK KEYS PHOTOS</title><link href='_css/styles_photoenlg.css' rel='stylesheet' type='text/css' /><script language='javascript' type='text/javascript' src='_js/common.js'></script></head><body style='margin:0 0 0 0; background-image:url(_images/photoenlg_bg.jpg); background-repeat:no-repeat; background-position:left top;'><img id='pic' class='photoenlg' src='_images/_photos/" + which + "' /><div class='close'><a class='close' href='#' onClick='closeMe();'>CLOSE THIS WINDOW</a></div></body></html>");
		}
	}
}

function closeMe() {
	window.opener.newWindow = null;
	window.close();
}



//SECTION HEAD IMAGES PRELOADER
var sh = new Array();
sh["news"] = new Image(750,128);
sh["news"].src = "_images/head_foreman.png";
sh["storelist"] = new Image(750,128);
sh["storelist"].src = "_images/head_foreman.png";
sh["photos"] = new Image(750,128);
sh["photos"].src = "_images/head_quality.png";
sh["bio"] = new Image(750,128);
sh["bio"].src = "_images/head_personnel.png";
sh["dates"] = new Image(750,128);
sh["dates"].src = "_images/head_outsourcing.png";
sh["albums"] = new Image(750,128);
sh["albums"].src = "_images/head_commercial.png";
sh["press"] = new Image(750,128);
sh["press"].src = "_images/head_preconsumer.png";
sh["audio"] = new Image(750,128);
sh["audio"].src = "_images/head_recovered.png";
sh["video"] = new Image(750,128);
sh["video"].src = "_images/head_refinery.png";
sh["patdiary"] = new Image(750,128);
sh["patdiary"].src = "_images/head_shift.png";
sh["dandiary"] = new Image(750,128);
sh["dandiary"].src = "_images/head_shift.png";
sh["contacts"] = new Image(750,128);
sh["contacts"].src = "_images/head_contract.png";
sh["taping"] = new Image(750,128);
sh["taping"].src = "_images/head_safety.png";
sh["merch"] = new Image(750,128);
sh["merch"].src = "_images/head_inventory.png";
sh["links"] = new Image(750,128);
sh["links"].src = "_images/head_external.png";



//BEGIN WITH THIS LAYER TURNED ON
var on = "news";
//HEADER IS THE SAME< DESIGNATED ABOVE
var section = on;

function correctPNG_2() // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
   for(var i=0; i<document.images.length; i++)
      {
	  var img = document.images[i]
	  var imgName = img.src.toUpperCase()
	  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
	     {
		 var imgID = (img.id) ? "id='" + img.id + "' " : ""
		 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
		 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
		 var imgStyle = "display:inline-block;" + img.style.cssText 
		 if (img.align == "left") imgStyle = "float:left;" + imgStyle
		 if (img.align == "right") imgStyle = "float:right;" + imgStyle
		 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle		
		 var strNewHTML = "<span " + imgID + imgClass + imgTitle
		 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
	     + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
		 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
		 img.outerHTML = strNewHTML
		 i = i-1
	     }
      }
   }




function prepare() {
	window.document.getElementById(on).style.visibility = "visible";
	//window.document.images["mainheader"].src = sh[section].src;
}

function swaplayer(which) {
	window.document.getElementById(on).style.visibility = "hidden";  
	window.document.getElementById(which).style.visibility = "visible";
	on = which;
	section = which;
	if(navigator.userAgent.indexOf("Win") != -1) {
		if(navigator.userAgent.indexOf("MSIE") != -1) {
			document.getElementById("heading").innerHTML = "<img src=" + sh[section].src + " name='mainheader' width='750' height='128' />";
			correctPNG_2();
		}else{
			window.document.images["mainheader"].src = sh[section].src;
		}
	}else{
		window.document.images["mainheader"].src = sh[section].src;
	}
}

function gotourl(which, neue) {
	if(neue != true) {
		window.location.href = which;
	}
	if(neue == true) {
		window.open(which,"");
	}
}
	
-->