
                function startup() {
                        if (document.getElementById("map")) {
                                if (document.getElementById("map").innerHTML == "map") {
                              if (GBrowserIsCompatible()) {
                                var map = new GMap2(document.getElementById("map"));
                                                        map.addControl(new GSmallMapControl());
                                                        map.addControl(new GMapTypeControl());
                                map.setCenter(new GLatLng(47.75135, -122.28112), 15);
                                                        
                                                        map.openInfoWindow(map.getCenter(), "Dr. Victoria Rhoades" + 
                                                                "<br>16840 Bothell Way NE" +
                                                                "<br>Lake Forest Park, WA 98155" +
                                                                "<br>206-295-1211" +
                                                                "<form method=get action='http://maps.google.com' style='text-align:left;color:#808080'>" +
                                                                "Get directions from:<br><input name='saddr' size='30' value=''>" +
                                                                "<input type='hidden' name='daddr' value='16840 Bothell Way NE, Lake Forest Park, WA 98155'>" +
                                                                "&nbsp;<input type='submit' value='Go'></form>");
/*      <!--
                
<br><a href='javascript:void showItem(\"contact\")'>Contact me</a>
        -->
*/

                              }
                          }

                        }

                        return false;
                }

                // mouseover functions
                function over(item) {
                        //if (item != selectedItem) {
                                document.getElementById(item).style.background="#DC6114";
                        //}
                }

                function out(item) {
                        //if (item != selectedItem) {
                                document.getElementById(item).style.background="#7B330B";
                        //}
                }

        var bannerNum = 0;
        var banner;
        function swapBanner() {
                bannerNum++;
                if (bannerNum == 4) bannerNum = 0;
                banner = document.getElementById("bannerImg");
                switch (bannerNum) {
                        case 0:
                                banner.src = "images/sunrise5.jpg";
                                break;
                        case 1:
                                banner.src = "images/banner-red-1.jpg";
                                break;
                        case 2:
                                banner.src = "images/banner-dc-1.jpg";
                                break;
                        case 3:
                                banner.src = "images/banner-sunset.jpg";
                                break;

                }
        }

        // Used for switching tabs on the Location page
        function showLocationTab(tab) {
            if (tab == 0) {
              document.getElementById("map").style.display = "block";
              document.getElementById("parking").style.display = "none";
              document.getElementById("tab1").style.background = "#C79579";
              document.getElementById("tab0").style.background = "#7B330B";
            } else {
              document.getElementById("map").style.display = "none";
              document.getElementById("parking").style.display = "block";
              document.getElementById("tab0").style.background = "#C79579";
              document.getElementById("tab1").style.background = "#7B330B";
            }

        }
