// JavaScript Document
var cText = "";

if (document.images) {
            m1on = new Image();
            m1on.src = menuPath+"graphics/m_culture_on.gif";  
            m2on = new Image();
            m2on.src = menuPath+"graphics/m_services_on.gif"; 
	        m3on = new Image();
            m3on.src = menuPath+"graphics/m_projects_on.gif";  
	        m4on = new Image();
            m4on.src = menuPath+"graphics/m_contact_on.gif"; 
	        m5on = new Image();
            m5on.src = menuPath+"graphics/m_home_on.gif";			 	
		
            m1off = new Image(); 
            m1off.src = menuPath+"graphics/"+m1butt;
            m2off = new Image(); 
            m2off.src = menuPath+"graphics/"+m2butt;
            m3off = new Image(); 
            m3off.src = menuPath+"graphics/"+m3butt; 
            m4off = new Image(); 
            m4off.src = menuPath+"graphics/"+m4butt;  
            m5off = new Image(); 
            m5off.src = menuPath+"graphics/"+m5butt;			
        }

function mOn(mName) {
        if (document.images) {
            document[mName].src = eval(mName + "on.src"); 
        }
}

function mOff(mName) {
        if (document.images) {
            document[mName].src = eval(mName + "off.src");
        }
}


cText +='<tr>';
if (url.fuseaction == 'Home')
	{
		cText +='<td valign="top" width="149" align="right"><img src="'+menuPath+'graphics/logo_1.gif" width="149" height="37" border="0" alt=""></td>';
	}
else
	{
		cText +='<td valign="top" width="149" align="right"><img src="'+menuPath+'graphics/tier_logo_1.gif" width="149" height="37" border="0" alt=""></td>';
	}
cText +='<td valign="top" width="469" colspan="3" background="'+menuPath+'graphics/m_cap.gif">';
cText +='<a href="'+menuPath+'index.cfm?fuseaction=3" onMouseOver=mOn("m1") onMouseOut=mOff("m1")><img src="'+menuPath+'graphics/'+m1butt+'" width="85" height="29" border="0" name="m1"></a>';
cText +='<a href="'+menuPath+'index.cfm?fuseaction=6" onMouseOver=mOn("m2") onMouseOut=mOff("m2")><img src="'+menuPath+'graphics/'+m2butt+'" width="85" height="29" border="0" name="m2"></a>';
cText +='<a href="'+menuPath+'index.cfm?fuseaction=7" onMouseOver=mOn("m3") onMouseOut=mOff("m3")><img src="'+menuPath+'graphics/'+m3butt+'" width="85" height="29" border="0" name="m3"></a>';
cText +='<a href="'+menuPath+'index.cfm?fuseaction=2" onMouseOver=mOn("m4") onMouseOut=mOff("m4")><img src="'+menuPath+'graphics/'+m4butt+'" width="85" height="29" border="0" name="m4"></a>';
cText +='<a href="'+menuPath+'index.cfm?fuseaction=1" onMouseOver=mOn("m5") onMouseOut=mOff("m5")><img src="'+menuPath+'graphics/'+m5butt+'" width="85" height="29" border="0" alt=""  name="m5"></a>';
cText +='</td>';
cText +='<td valign="top" width="80%" background="'+menuPath+'graphics/m_cap.gif">&nbsp;</td>';
cText +='</tr>';

//Write string to document	

document.write(cText);