function ConfigureDropDownMenu(myPositionSelector) { //Checking browser version is = new BrowserCheck(); //creating menu object TE = new TreeItem(0,0,"items2","",""); //x and y position var ieWidth = 81.8; var ns6Width = 81.2; if(myPositionSelector==1) { if(ns) { TE.xpos=8; } else if(n6) { TE.xpos=7; } else if(ie) { TE.xpos=9; } else { TE.xpos=8; } if(ns) { TE.ypos=253; } else if(n6) { TE.ypos=252; } else if(ie) { TE.ypos=260; } else { TE.ypos=254; } //column width if(n6) { TE.width=ns6Width; } else { TE.width=ieWidth; } } else if(myPositionSelector==2) { if(ns) { TE.xpos=8; } else if(n6) { TE.xpos=7; } else if(ie) { TE.xpos=9; } else { TE.xpos=8; } if(ns) { TE.ypos=166; } else if(n6) { TE.ypos=166; } else if(ie) { TE.ypos=171; } else { TE.ypos=171; } //column width if(n6) { TE.width=ns6Width; } else { TE.width=ieWidth; } } else if(myPositionSelector==3) { if(ns) { TE.xpos=8; } else if(n6) { TE.xpos=7; } else if(ie) { TE.xpos=9; } else { TE.xpos=8; } if(ns) { TE.ypos=175; } else if(n6) { TE.ypos=175; } else if(ie) { TE.ypos=181; } else { TE.ypos=181; } //column width if(n6) { TE.width=ns6Width; } else { TE.width=ieWidth; } } else if(myPositionSelector==4) { if(ns) { TE.xpos=8; } else if(n6) { TE.xpos=7; } else if(ie) { TE.xpos=40; } else { TE.xpos=40; } if(ns) { TE.ypos=175; } else if(n6) { TE.ypos=175; } else if(ie) { TE.ypos=181; } else { TE.ypos=181; } //column width if(n6) { TE.width=ns6Width; } else { TE.width=ieWidth; } } //end of position selector //alignment "vert" - vertical "hor" - horizontal TE.align="hor"; TE.bckColor="#000000"; TE.selBckColor="#FFFFFF"; TE.fntColor="#FFFFFF"; TE.selFntColor="#000000"; //font size TE.fntSize=1; //item height TE.iHeight=22.5; //icon image width TE.imWidth=0; //border width TE.bSize=1; //border color TE.bColor="#FFFFFF"; TE.arrIm=""; TE.arrIm1=""; // inserting items into menu //A(ItemID,ParentID,"title",URL,icon URL) TE.A(1,0,"Home","http://www.choicesportstravel.com","",""); TE.A(2,0,"Reservations","","",""); TE.A(3,0,"About Us","http://www.choicesportstravel.com/LivePages/About_CST.jsp","",""); TE.A(4,0,"FAQ","http://www.choicesportstravel.com/LivePages/Main_FAQ.jsp","",""); TE.A(5,0,"Contact Us","http://www.choicesportstravel.com/LivePages/Main_Contact.jsp","",""); TE.A(6,0,"Our Partners","/StaticPages/ourPartners.jsp","",""); TE.A(7,0,"Our Hotels","","",""); TE.A(8,0,"Sports News","/SportsNews.jsp?newsfeed=3","",""); TE.A(9,2,"View/Cancel  Reservation","http://www.choicesportstravel.com/LivePages/viewAReservation.jsp","",""); TE.A(10,3,"Our Mission","http://www.choicesportstravel.com/LivePages/About_CST.jsp","",""); TE.A(11,3,"Testimonials","/LivePages/Testimonials.jsp","",""); TE.A(12,3,"Privacy & Security Policy","javascript:openWindow('http://com.choicehotels.com/ires/en-US/html/PrivacyPolicy','600','595',' ')","",""); TE.A(13,5,"Contact Info","http://www.choicesportstravel.com/LivePages/Main_Contact.jsp","",""); TE.A(14,5,"Comment Form","/StaticPages/feedbackForm.jsp","",""); TE.A(15,5,"Order Directory","/StaticPages/directoryOrder.jsp","",""); TE.A(16,5,"View eDirectory","/StaticPages/eDirectory.html","",""); TE.A(17,7,"Clarion","/BrandInfo.jsp?brand=Clarion","",""); TE.A(18,7,"Quality ","/BrandInfo.jsp?brand=Quality","",""); TE.A(19,7,"Comfort Suites","/BrandInfo.jsp?brand=ComfortSuites","",""); TE.A(20,7,"Comfort Inn","/BrandInfo.jsp?brand=ComfortInn","",""); TE.A(21,7,"Sleep Inn","/BrandInfo.jsp?brand=Sleep","",""); TE.A(22,7,"MainStay Suites","/BrandInfo.jsp?brand=MainStay","",""); TE.A(23,7,"Econo Lodge","/BrandInfo.jsp?brand=Econo","",""); TE.A(24,7,"Rodeway Inn","/BrandInfo.jsp?brand=Rodeway","",""); TE.A(25,8,"Pro Sports","/SportsNews.jsp?newsfeed=3","",""); TE.A(26,8,"College Sports","/SportsNews.jsp?newsfeed=2","",""); TE.A(27,8,"Youth Sports","/SportsNews.jsp?newsfeed=1","",""); TE.WriteCSS(); TE.WriteDiv(); } //Inits menu Events function MenuInit() { TE.EventInit(); } function Reset() { TE.Reset(); }