// TO SEE THE FILE BETTER USE WORDWRAP

//------------------------------------------+
// SmartMenus v.1                           |
// ©2001 VASIL DINKOV - PLOVDIV, BULGARIA   |
// http://mp3.dinkov.com | vasko@dinkov.com |
//------------------------------------------+
// For Internet Explorer 4 and Netscape 6   |
//------------------------------------------+

//==1==Defining Colors
var menuFrameColor='#000000';
var menuBgColor='#ececec';
var menuOverBgColor='#ffffff';
var menuFontColor='#490012';
var menuOverFontColor='#490012'//(can be the same as menuFontColor)

//==2==Defining TARGET for the links in the menu
var target='self'//(newWindow or self)(cannot navigate to frame)

//==3==Defining font, menu cell padding & frame border width
var font='Georgia';
var fontSize='11px';
var fontWeight='bold';//(bold or normal)
var cellPadding='2';
var frameBorderWidth='1';

//==4==Defining The Menus Width
var menuWidth='160';

//==5==Defining The Menus Placement (top left corner of the menus)
var menuTopPixels=96;//from document top & left corner(without quotes)
var menu1LeftPixels=72;
//var menu2LeftPixels=60;
//var menu3LeftPixels=157;
//var menu4LeftPixels=530;
//var menu5LeftPixels=296;
//var menu6LeftPixels=400;//(if you want more add like this)

//==6==Defining The Menus Count (how many do you want)
var menuCount=1;//(without quotes)

//=============MENU DEFINITIONS=============
//(be sure to have the same number of array items for both href & text)

//===Menu 1
href1=new Array('/corporate/','/funding/','/marketing/','/mA/','/finance/');
text1=new Array('Corporate Strategy Services','Funding','Marketing','Mergers & Acquisitions','Strategic Financial Services');

function MV1(){var x='';for(i=0;i<href1.length;i++){x=x+"<tr><td class=mxz onclick=doGo('"+href1[i]+"') onmouseover=ov(this) onmouseout=ou(this)>"+text1[i]+"</td></tr>"};return x};
//===Menu 1 END


//=============MENU DEFINITIONS END=============

// THE SERIOUS SCRIPT PLEASE DO NOT TOUCH
if(document.all){topY=menuTopPixels}else{topY=menuTopPixels-2};/*NS bud*/function rV(){q='';for(z=1;z<=menuCount;z++){if(document.all){q=q+"m"+z+".style.display='none';"}else{q=q+"document.getElementById('m"+z+"').style.display='none';"}};return q};eval("function hide(a){if(a.clientY<=topY){"+rV()+"}};function hide2(){"+rV()+"}");eval("function ov(ok){ok.style.background='"+menuOverBgColor+"';ok.style.color='"+menuOverFontColor+"'};function ou(ok){ok.style.background='"+menuBgColor+"';ok.style.color='"+menuFontColor+"'};function doGo(ok){var tgt='"+target+"';if(tgt=='newWindow'){window.open(ok)}else{document.location.href=ok}};function show(a){if(document.all){eval(a).style.display=''}else{document.getElementById(a).style.display=''}}");document.write("<style>.mxz{font-family:"+font+";font-size:"+fontSize+";color:"+menuFontColor+";font-weight:"+fontWeight+";background:"+menuBgColor+";padding:"+cellPadding+";cursor:hand}</style>");function buildTheAsses(){for(j=1;j<=menuCount;j++){document.write("<div style=position:absolute;top:"+(menuTopPixels-1)+";left:"+(eval('menu'+j+'LeftPixels')-100)+";z-index:3;display:none id="+('m'+j)+"><table cellpadding=0 cellspacing=0 border=0><tr><td colspan=3 height=1></td></tr><tr><td width=100 onmouseover=hide2()></td><td bgcolor="+menuFrameColor+"><table width="+menuWidth+" cellspacing="+frameBorderWidth+" border=0>"+eval('MV'+j+'()')+"</table></td><td width=100 onmouseover=hide2()></td></tr><tr><td colspan=3 height=200 onmouseover=hide2()></td></tr></table></div>")}};buildTheAsses()