Do you mean the select that starts with "Network Websites"? If so then it's a simple <select> with <option> that have a javascript assigned to them onchange.
Here's a working code. Edit to add your links/website pages etc. ------------ <script type="text/javascript"> <!-- function GOE() { location= document.E.SE.options[document.E.SE.selectedIndex].value } --> </script> <form name="E"> <select name="SE" OnChange="GOE()" style="background: #000066; color: #FFFFFF;"> <option value="">-----------------</option> <option value="http://www.google.com"> Google </option> <option value="http://www.live.com"> Live </option> </select</form> --------------------- Change the "value" in "option" tags. Add more, or edit these whatever... Bye
Ah, Patrick O'Keefe's Web network (he's a forum moderator over at SitePoint - you can find him by looking for iFroggy).