YAHOO.util.Event.onDOMReady(function () {
   var aItems = [
		{ text: "Sheds", url: "#Sheds", submenu: { id: "sheds", itemdata: [ 
			{ text: "Painted Sheds", url: "sheds.html" },
			{ text: "Vinyl Sheds", url: "vinyl.html" }
		] } },
		{ text: "Cabins", url: "cabin.html"},
		{ text: "Swingsets", url: "swingsets.html" },
		{ text: "Gazebos", url: "gazebos.html" },
		{ text: "Pool Houses", url: "poolhouses.html" },
		{ text: "Lawn Furniture", url: "lawnfurniture.html" },
		{ text: "Horse Barns", url: "horse.html"},
		{ text: "Run-In Sheds", url: "run-in.html"}
	];

	var navMenu = new YAHOO.widget.Menu("products", { 
			position:"dynamic", 
			hidedelay:750
		});

	navMenu.addItems(aItems); 

	navMenu.showEvent.subscribe(function () {

		this.focus();
	
	});
	
	navMenu.render("prod");

	YAHOO.util.Event.addListener("prod", "mouseover", navMenu.show, null, navMenu);
	YAHOO.util.Event.addListener("home", "mouseover", navMenu.hide, null, navMenu);
	YAHOO.util.Event.addListener("abou", "mouseover", navMenu.hide, null, navMenu);
	YAHOO.util.Event.addListener("spec", "mouseover", navMenu.hide, null, navMenu);
	YAHOO.util.Event.addListener("test", "mouseover", navMenu.hide, null, navMenu);
	YAHOO.util.Event.addListener("cont", "mouseover", navMenu.hide, null, navMenu);

});