<!-- // START MENU CODE 
 
// NOTE: If you use a ' add a slash before it like this \' 
// MENU VER 2.0 IE 7.0 COMPATIBLE 
 
//StartMenu() 
 
// MENU OPTIONS - you will find more options in the corporatestyle.css 
 
MFT		   = 36; 						  // MENU DISTANCE FROM TOP 
TMH		   = 26;							// TOP MENU HEIGHT 
TMBC		 = "FFFEDD"; 				// TOP MENU OFF BACKGROUND COLOR 
TMBI	= "images/menu.gif";	// TOP MENU OFF BACKGROUND IMAGE 

// START SUBMENU OPTIONS - you will find more options in the corporatestyle.css 

SMFS		= "11";							// SUB MENU FONT SIZE 
SMFW		= "normal";					// SUB MENU FONT WEIGHT bold/normal 
SMBC		= "FFFFFF";					// SUB MENU OFF BACKGROUND COLOR 
SMFF		= "arial,MS Sans Serif,sans-serif, PMingLiU, SimSun";	// SUB MENU FONT FACE 

// Let's do something to customize MFT (MENU DISTANCE FROM TOP)
 if(typeof(hMenuToWTop) != 'undefined')  { 
   MFT = hMenuToWTop+1;
 }
 
 
SubMenu() 
 

function SubMenu() 
{ 
  document.write("<TABLE cellpadding='0' cellspacing='0' border='0' width='100%' BGCOLOR='#'+TMBC+''><tr><td height="+TMH+">"); 
  document.write("</td></tr></table>"); 
  document.write("<div width='100%' style='height:"+(TMH-2)+";position:absolute;top:"+MFT+";width:100%;background-image: url("+TMBI+"); background-color:#"+TMBC+";z-level:-2'></div>") 
} 

 
 
// END MENU CODE -->
