/*** Menu Display Sizes **/ function getMenuSizes(){ var bw = new browserCheck(); /* set Page items */ var page = new pageSize( null, bw); /* 4/18/08 bob set default size first */ this.barWidth=1240; this.barHeight=24; this.barMenuWidth=130; this.L0width=90; this.L0height=20; this.L1width=170; this.L1height=20; this.L2width=170; this.L2height=20; /* 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=150; this.L0height=20; this.L1width=190; this.L1height=23; this.L2width=190; this.L2height=23; }else{ if(page.x2 <= 1280){ this.barWidth=1240; this.barHeight=24; this.barMenuWidth=130; this.L0width=170; this.L0height=20; this.L1width=190; this.L1height=23; this.L2width=190; this.L2height=23; } } } return this; }