// JavaScript Document
// WM Partners 

// footertext places standard footer text at the given position.
function footertext(x,y,color)
{
	document.write("<span style='position:absolute; top:"+x+"px; left:"+y+"px; color:"+color+";'>&#xA9; Copyright 2008 WM Partners LLP. All Rights Reserved. Get IT Right&#8482; is a  trademark of WM Partners LLP.</span>");
};

// changeColor changes the colour of an item; it's used to change the color of the current menu position.
function changeColor(newColor, myelement)
{
 elem = document.getElementById(myelement);
 elem.style.color = newColor;
};


