/**
 * AdjustMenu v1.0
 *
 * Generated by 123 Flash Menu
 * 2006
 *
 */
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-document.getElementById('center_menu').width)/2+'px';   
} 
} 

