/*** Menu Display Sizes **/ function getMenuSizes(){ var bw = new browserCheck(); /* set Page items */ var page = new pageSize( null, bw); /* Set up menu sizing */ if(page.x2 <= 800){ this.barWidth=780; this.barHeight=18; this.barMenuWidth=90; this.L0width=80; this.L0height=15; this.L1width=80; this.L1height=22; this.L2width=80; this.L2height=22; }else{ if(page.x2 <= 1024){ this.barWidth=1010; this.barHeight=18; this.barMenuWidth=120; this.L0width=90; this.L0height=15; this.L1width=90; this.L1height=23; this.L2width=90; this.L2height=23; }else{ if(page.x2 <= 1280){ this.barWidth=1240; this.barHeight=24; this.barMenuWidth=130; this.L0width=90; this.L0height=20; this.L1width=120; this.L1height=20; this.L2width=120; this.L2height=20; } } } return this; }