<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showpictures	= "no"		//  Show changing images
var showimage1		= "no"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "no"		//  SHOW SECOND SIDEBAR IMAGE


// Used to define picture section
var flashwidth		= "120"		// WIDTH OF THE FLASH (IN PIXELS)
var flashheight		= "120"		// HEIGHT OF THE FLASH (IN PIXELS)
var color			= "000000"	// IMAGE SLIDER BACKGROUND COLOR

document.write('<div id="menulocation" style="z-index: 10;">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="printhide">');
document.write('<ul id="top-nav">');


// START MENU LINKS - EDIT BELOW THIS AREA


document.write('  <li class="menuT"><a href="index.html">Home</a>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="company.htm">Company</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="company.htm">Background</a></li>');
document.write('      <li><a href="company_usp.htm">What makes us different</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="solutions.htm">Solutions</a>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="services.htm">Services</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="services.htm">Overview</a></li>');
document.write('      <li><a href="services_scoping.htm">Programme Scoping</a></li>');
document.write('      <li><a href="services_technology.htm">Technology and Delivery</a></li>');
document.write('      <li><a href="services_change.htm">Change Management</a></li>');
document.write('      <li><a href="services_support.htm">Operational Support</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="Success.htm">Success</a>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="resources.htm">Resources</a>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="contact.htm">Contact</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="contact.htm">Contact Us</a></li>');
document.write('      <li><a href="contact_directions.htm">How to Find Us</a></li>');
document.write('    </ul>');
document.write('  </li>');

// the following line opens a new window for the menu option
// document.write('      <li><a href="services_change.htm" target="_blank">Change Management</a></li>');


// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');


// START MENU IMAGES


if	(showpictures == "yes" )
	{
	document.write('<br><br><table cellpadding="0" cellspacing="0" border="0" width="'+flashwidth+'" bgcolor="'+color+'"><tr><td valign="middle" align="center">');
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="imagechanger">');
	document.write('<PARAM NAME="movie" VALUE="imagechanger.swf">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<PARAM NAME="wmode" VALUE="transparent">');
	document.write('<PARAM NAME="bgcolor" VALUE="#'+color+'">');
	document.write('<EMBED src="imagechanger.swf" quality="high" wmode="transparent" bgcolor="#'+color+'"  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="imagechanger" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');
	document.write('</td></tr></table>');
	}

if (showimage1 == "yes") {
	document.write('<br><br><a href="index.html"><img src="menu-picture-1.jpg" border="0" class="borders"></a><br><br><br>');
}

if (showimage1 == "no") {
	document.write('<br><br><br><br><br>');
}


if (showimage2 == "yes") {
	document.write('<a href="index.html"><img src="menu-picture-2.jpg" border="0" class="borders"></a><br><br>');
}

if (showimage2 == "no") {
	document.write('<br><br><br><br><br>');
}

	
document.write('</td></tr></table></DIV>');



// YOU DO NOT NEED TO EDIT BELOW THIS LINE

function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;