// JavaScript Document
var menus = [ 'servicesMenu'];
function hideMenus(){
	//alert (menus.length);
	for(var i = 0; i < menus.length; i++){
	document.getElementById(menus[i]).style.display = 'none';
	//document.getElementById(menus[i]+"Link").style.backgroundColor = "transparent";
	}
}
function showMenu(menu){
	hideMenus();
	document.getElementById(menu).style.display = 'block';
	document.getElementById(menu).style.zIndex = 9999;
	//document.getElementById(menu+"Link").style.backgroundColor = "#b9b899";
	//alert(menu);
}


window.onload = function(){
	var theheight;
	var col1 = document.getElementById('col1');
	var col2 = document.getElementById('col2');
 theheight = col1.offsetHeight;
 if (col2.offsetHeight > theheight) theheight = col2.offsetHeight; 
 col1.style.height = theheight +'px';
 col2.style.height = theheight+'px';
}




