function createjsDOMenu() {
  absoluteMenu1 = new jsDOMenu(219, "absolute", "", true);
  with (absoluteMenu1) {
    addMenuItem(new menuItem("Items to Recycle", "", "javascript:openInNewWindow('http://www.pcfawc.com/recycling-center.html')"));
    addMenuItem(new menuItem("Battery Collection Program", "", "javascript:openInNewWindow('http://www.pcfawc.com/battery-recycling.html')"));
    addMenuItem(new menuItem("Articles of Interest", "", "javascript:openInNewWindow('includings/articles_of_interest.pdf')"));
    addMenuItem(new menuItem("Resources", "", "resources.html"));
    addMenuItem(new menuItem("Contacts", "item2", "#"));
	
    addMenuItem(new menuItem("Recycling Home", "", "index.html"));
    addMenuItem(new menuItem("County of Warren", "", "../index.html"));
	addMenuItem(new menuItem("Household Hazardous Waste and Electronic & Computer Parts Collection", "", "javascript:openInNewWindow('http://www.pcfawc.com/HHW10Oct.pdf')"));
    moveTo(30, 170);
    show();
  }  
  
      absoluteMenu1_2 = new jsDOMenu(250, "absolute");
  with (absoluteMenu1_2) {
    addMenuItem(new menuItem("School Recycling", "", "javascript:openInNewWindow('includings/School_Recycling_Coordinators_2008.pdf')"));
	addMenuItem(new menuItem("Municipal Recycling", "", "javascript:openInNewWindow('includings/MUNICIPAL_RECYCLING_COORDINATORS_03-26-10.pdf')"));

  }
  
  absoluteMenu1.items.item2.setSubMenu(absoluteMenu1_2);

}

function openInNewWindow(pageUrl)
{
	var loadWin =  window.open(pageUrl);
}




