/* MAINMENU FUNCTIONS */ var mainmenu_curr=-1; function mainmenu_Roll(x) { if(x!=mainmenu_curr) { mainmenu_td_t=document.getElementById('mainmenu_td_t'+x); // the top td mainmenu_td_b=document.getElementById('mainmenu_td_b'+x); // the bottom td if(mainmenu_td_t&&mainmenu_td_b) { if(mainmenu_td_t.className=='mainmenu mainmenu_t') { mainmenu_td_t.className='mainmenu mainmenu_t_on'; mainmenu_td_b.className='mainmenu_b_on'; } else { mainmenu_td_t.className='mainmenu mainmenu_t'; mainmenu_td_b.className='mainmenu_b'; } } } } function mainmenu_setCurr(x) { mainmenu_Roll(x); mainmenu_curr=x; } /* SUBMENU FUNCTIONS */ var submenu_curr=-1; function submenu_Roll(x) { if(x!=submenu_curr) { submenu_td_t=document.getElementById('submenu_td_t'+x); // the top td submenu_td_b=document.getElementById('submenu_td_b'+x); // the bottom td submenu_td_bs_r=document.getElementById('submenu_td_bs'+x); // the td to the right of the bottom td submenu_td_bs_l=document.getElementById('submenu_td_bs'+(x-1)); //the td to the left of the bottom td if(submenu_td_t&&submenu_td_b) { if(submenu_td_t.className=='submenu submenu_t') { submenu_td_t.className='submenu submenu_t_on'; submenu_td_b.className='submenu_b_on'; if(submenu_td_bs_r) submenu_td_bs_r.className='submenu_b_on'; if(submenu_td_bs_l) submenu_td_bs_l.className='submenu_b_on'; } else { submenu_td_t.className='submenu submenu_t'; submenu_td_b.className='submenu_b'; if(submenu_td_bs_r&&(x+1)!=submenu_curr) submenu_td_bs_r.className='submenu_b'; if(submenu_td_bs_l&&(x-1)!=submenu_curr) submenu_td_bs_l.className='submenu_b'; } } } } function submenu_setCurr(x) { submenu_Roll(x); submenu_curr=x; } function button_flipOn(x,c) { var b = document.getElementById(x); if(b) b.className=b.className+' button_'+c+'_on'; } function button_flipOff(x,c) { var b = document.getElementById(x); if(b) b.className='button_'+c; }