var menu = "<img src='images/logo.jpg' alt='logo' id='menu_logo' /><a href='index.html' class='left_menu_btn dot_border'>Home</a>" +
	"<a href='notices.html' class='left_menu_btn dot_border'>Notices</a>" +
	"<a href='newsletter.html' class='left_menu_btn dot_border'>Te Kukupa News</a>" +
	"<a href='marae.html' class='left_menu_btn dot_border'>Marae</a>" +
	"<a href='services.html' class='left_menu_btn dot_border'>What We Do</a>" + 
        "<a href='iwi.html' class='left_menu_btn dot_border'>Iwi R & D</a>" + 
	"<a href='organization.html' class='left_menu_btn dot_border'>Organisation Profile</a>" + 
	"<a href='assets.html' class='left_menu_btn dot_border'>Assets Companies</a>" + 
	"<a href='treaty.html' class='left_menu_btn dot_border'>Treaty Negotiations</a>" + 
	"<a href='treaty_consultation.html' class='left_menu_btn dot_border'>Treaty Consultation</a>" +
        "<a href='environment.html' class='left_menu_btn dot_border'>Environment</a>" +
        "<a href='media.html' class='left_menu_btn dot_border'>Te Hiku Media</a>" +	
	//"<a href='archives.html' class='left_menu_btn dot_border'>Archives</a>" +
        "<a href='register.html' class='left_menu_btn'>Register</a>";

function swap_img(obj, image){
	var org_src = obj.src;
	obj.src = image;
	obj.onmouseout = function(){
		obj.src = org_src;
	}
}

function get_menu(){
	// var menu = "<img src='images/logo.jpg' alt='logo' id='menu_logo' /><a href='index.html' class='left_menu_btn dot_border'><img src='images/home.gif' alt='Home' onmouseover=\"swap_img(this, 'images/home_blue.gif')\" /></a>" +
	// "<a href='newsletter.html' class='left_menu_btn dot_border'><img src='images/te_kukupa_news.gif' alt='Marae' onmouseover=\"swap_img(this, 'images/te_kukupa_news_blue.gif')\" /></a>" +
	// "<a href='marae.html' class='left_menu_btn dot_border'><img src='images/marae.gif' alt='Marae' onmouseover=\"swap_img(this, 'images/marae_blue.gif')\" /></a>" +
	// "<a href='services.html' class='left_menu_btn dot_border'><img src='images/services.gif' alt='Services' onmouseover=\"swap_img(this, 'images/services_blue.gif')\" /></a>" + 
	// "<a href='organization.html' class='left_menu_btn dot_border'><img src='images/organisation.gif' alt='Organisation Profile' onmouseover=\"swap_img(this, 'images/organisation_blue.gif')\" /></a>" + 
	// "<a href='assets.html' class='left_menu_btn dot_border'><img src='images/assets.gif' alt='Assets Companies' onmouseover=\"swap_img(this, 'images/assets_blue.gif')\" /></a>" + 
	// "<a href='treaty.html' class='left_menu_btn dot_border'><img src='images/treaty.gif' alt='Treaty Negotiations' onmouseover=\"swap_img(this, 'images/treaty_blue.gif')\" /></a>" + 
	// "<a href='register.html' class='left_menu_btn'><img src='images/register.gif' alt='Register' onmouseover=\"swap_img(this, 'images/register_blue.gif')\" /></a>";
	
	// var menu = "<img src='images/logo.jpg' alt='logo' id='menu_logo' /><a href='index.html' class='left_menu_btn dot_border'>Home</a>" +
	// "<a href='newsletter.html' class='left_menu_btn dot_border'>Te Kukupa News</a>" +
	// "<a href='marae.html' class='left_menu_btn dot_border'>Marae</a>" +
	// "<a href='services.html' class='left_menu_btn dot_border'>Services</a>" + 
	// "<a href='organization.html' class='left_menu_btn dot_border'>Organsation Profile</a>" + 
	// "<a href='assets.html' class='left_menu_btn dot_border'>Assets Companies</a>" + 
	// "<a href='treaty.html' class='left_menu_btn dot_border'>Treaty Negotiations</a>" + 
	// "<a href='register.html' class='left_menu_btn'>Register</a>";
	
	// document.getElementById('left_menu').innerHTML = menu;
	
	var left_h = document.getElementById('left_col').clientHeight;
	var mid_h = document.getElementById('mid_col').clientHeight;
	var right_h = (document.getElementById('right_col') != null) ? document.getElementById('right_col').clientHeight : 0;
	
	var max_h = Math.max(left_h, mid_h, right_h);
	if (max_h > left_h){
		document.getElementById('left_col').style.height = max_h+'px';
	}
}