// JavaScript Document

// (c) 2010 Dean A Turnbull (Next Edge)
// Licenced To eNerds IT

// Not to be copied or reused without express permission from the copyright owner

function menu_mousein(id)
{
		document.getElementById('buttonl' + id).src = "/images/button_highlight_left.gif";
		document.getElementById('buttonc' + id).style.backgroundImage = "url(/images/button_highlight_bg.gif)";
		document.getElementById('buttonr' + id).src = "/images/button_highlight_right.gif";
}
function menu_mouseout(id)
{
		document.getElementById('buttonl' + id).src = "/images/button_normal_left.gif";
		document.getElementById('buttonc' + id).style.backgroundImage = "url(/images/button_normal_bg.gif)";
		document.getElementById('buttonr' + id).src = "/images/button_normal_right.gif";
}

