 <!--//
             ///////////////////////////////////////////////////;
             //    Tabs Menu (mouseover)- By Dynamic Drive    //;
             //  For full source code and more DHTML scripts  //;
             //        visit http://www.dynamicdrive.com      //;
             //       This credit MUST stay intact for use    //;
             ///////////////////////////////////////////////////;

         ////////////////////////////////////////////////////////////;
         //          Links used to initiate the sub menus.         //;
         // Pass in the desired submenu index numbers  (ie: 0, 1)  //;
         ////////////////////////////////////////////////////////////;
  if(document.images){
     with(document){
     writeln(' <span class="menutext"> ');
     writeln(' <a href="index.htm" onMouseover="showit(0)">Home</a>   ·  ');
     writeln(' <a href="services.htm" onMouseover="showit(1)">Services</a>   ·  ');
     writeln(' <a href="design.htm" onMouseover="showit(2)">Project Designs</a>   ·  ');  
     writeln(' <a href="portfolio.htm" onMouseover="showit(3)">Photo Gallery</a>   ·  ');  
     writeln(' <a href="coinfo.htm" onMouseover="showit(4)">About AR CraftWorks</a> ');
     writeln(' </span><br> ');

         /////////////////////////////////////////////////////////////;
         // Edit the dimensions of the below, plus background color //;
         /////////////////////////////////////////////////////////////;
     writeln(' <ilayer width=800 height=16 name="dep1" bgColor="#ccffcc"> ');
     writeln(' <layer name="dep2" width=800 height=16> ');
     writeln(' </layer> ');
     writeln(' </ilayer> ');
     writeln(' <div id="describe" onMouseover="clear_delayhide()" onMouseout="resetit(event)"> ');
     writeln(' </div> ');
   }
 }

       ////////////////////////////////////////////////////////////////;
       //          Set submenu contents. Expand as needed.           //;
       // For each content, make sure everything exists on ONE LINE. //;
       //            Otherwise, there will be JS errors.             //;
       ////////////////////////////////////////////////////////////////;
       var submenu=new Array();

   submenu[0]='<span class="submenu"><a href="index.htm"></a></span>';

   submenu[1]='<span class="submenu"><a href="services.htm#design">Design</a> | <a href="services.htm#planning">Planning/Project Management</a> | <a href="services.htm#construction">Construction</a> | <a href="services.htm#completion">Project Completion</a></span>';

   submenu[2]='<span class="submenu"><a href="concepts.htm">Conceptual Drawings</a> | <a href="plans.htm">Building Plans</a></span>';

   submenu[3]='<span class="submenu"><a href="kitchens.htm">Kitchens</a> | <a href="bathrooms.htm">Bathrooms</a> | <a href="additions.htm">Additions</a> | <a href="outdoor.htm">Outdoor Living</a> | <a href="flooring.htm">Flooring</a> | <a href="mantels.htm">Mantels</a> | <a href="cabinetry.htm">Cabinetry</a> | <a href="furniture.htm">Furniture</a> | <a href="foundations.htm">Foundations & Retrofitting</a></span>';

   submenu[4]='<span class="submenu"><a href="coinfo.htm">Background</a> | <a href="coinfo.htm#license">License</a> | <a href="coinfo.htm#insurance">Insurance & Bonding</a> | <a href="coinfo.htm#references">References</a> | <a href="coinfo.htm#contact">Contact Information</a></span>';

       /////////////////////////////////////////////////////////////////;
       //    Set delay before submenu disappears (in milliseconds)    //;
       /////////////////////////////////////////////////////////////////;
       var delay_hide=1200;


       //////////////////////////////////////////////////////////////////;
       //               No need to edit beyond here                    //;
       //////////////////////////////////////////////////////////////////;
       var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

       function showit(which){
         clear_delayhide();
         thecontent=(which==-1)? "" : submenu[which]
           if(document.getElementById||document.all){
              menuobj.innerHTML=thecontent;
           }
             else if(document.layers){
                 menuobj.document.write(thecontent);
                 menuobj.document.close();
             }
       }

       function resetit(e){
         if(document.all&&!menuobj.contains(e.toElement)){
             delayhide=setTimeout("showit(-1)",delay_hide);
         }
           else if(document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget)){
               delayhide=setTimeout("showit(-1)",delay_hide);
           }
       }

       function clear_delayhide(){
         if(window.delayhide){
            clearTimeout(delayhide);
         }
       }

       function contains_ns6(a, b){
         while (b.parentNode){
           if((b = b.parentNode) == a){
              return true;
              return false;
           }
         }
      }

 //-->

