/**
 * AdjustMenu v2.0
 *
 * Generated by 123 Flash Menu
 * 2007-5-20
 *
 */
function AdjustMenu() {
var w_newWidth;
if (navigator.appName.indexOf("Microsoft") != -1) {
    // MSIE4+
    w_newWidth=document.body.clientWidth; 
    document.center_menu.style.left=(w_newWidth-document.center_menu.width)/2+'px';
}
else { 
    // NN4+&Others    
    w_newWidth=window.innerWidth;     
    document.getElementById('center_menu').style.left=(w_newWidth-parseInt(document.getElementById('center_menu').style.width))/2+'px';       
   
} 
} 
