﻿YAHOO.util.Event.onContentReady("productsandservices", function () {

    var oMenu = new YAHOO.widget.Menu("productsandservices", { 
                                            position: "static", 
                                            hidedelay:  750, 
                                            lazyload: true });

    var aSubmenuData = [
    
        {
            id: "Home"
        },

        {
            id: "Services"
        },
        
        {
            id: "Projects", 
            itemdata: [
                { text: "Commercial", url: "Commercial_Proj.html" },
                { text: "Geothermal", url: "Geothermal_Proj.html" },
                { text: "Government", url: "Government_Proj.html" },
                { text: "Institutional", url: "Institutional_Proj.html" },
                { text: "Residential", url: "Residential_Proj.html" },
                { text: "Industrial", url: "Industrial_Proj.html" },
                { text: "Financial", url: "Financial_Proj.html" }          
            ] 
        },
        
        {
            id: "Contact Us"
        }                   

    ];

    // Subscribe to the Menu instance's "beforeRender" event
    oMenu.subscribe("beforeRender", function () {

        if (this.getRoot() == this) {
            this.getItem(2).cfg.setProperty("submenu", aSubmenuData[2]);

        }

    });
    
    oMenu.render();
});

document.write("<div id='doc' class='yui-t1' style='top: 308px; width: 9.4em; left: 1px;'>")

document.write("	<div class='yui-b' style='top: -2px; height: 162px;'>")

document.write("		<div id='productsandservices' class='yuimenu'>")
document.write("			<div class='bd'>")
document.write("				<ul>")
document.write("					<li class='yuimenuitem'>")
document.write("						<a class='yuimenuitemlabel' href='index.html'>")
document.write("						Home</a>")
document.write("					</li>")
document.write("					<li class='yuimenuitem'>")
document.write("						<a class='yuimenuitemlabel' href='Services.html'>")
document.write("						Services</a>")
document.write("					</li>")

document.write("					<li class='yuimenuitem'>")
document.write("						<a class='yuimenuitemlabel' href='Projects.html'>")
document.write("						Projects</a>")
document.write("					</li>")
document.write("					<li class='yuimenuitem'>")
document.write("						<a class='yuimenuitemlabel' href='Contacts.html'>")
document.write("						Contact Us</a>")
document.write("					</li>")
document.write("				</ul>")
document.write("			</div>")
document.write("		</div>")
	    
document.write("	</div>")

document.write("</div>")
