/*-----------------------Drop down menus------------------------------------*/
function mmLoadMenus() {
  if (window.mm_menu_1117153222_0) return;
  window.mm_menu_1117153222_0 = new Menu("root",162,20,"Arial, Helvetica, sans-serif",12,"#FFFFFF","#000000","#5D5C00","#DDD7B7","left","middle",9,0,1000,-5,7,true,true,true,0,true,true);
  mm_menu_1117153222_0.addMenuItem("PLANTS&nbsp;&&nbsp;BULBS","location=SITE_URL+'static/plants/'");
  mm_menu_1117153222_0.addMenuItem("TOOLS&nbsp;&&nbsp;SUPPLIES","location=SITE_URL+'static/tools/'");
  mm_menu_1117153222_0.addMenuItem("CHEMICALS","location=SITE_URL+'static/chemicals/'");
  mm_menu_1117153222_0.addMenuItem("ORGANICS","location=SITE_URL+'static/organics/'");
  mm_menu_1117153222_0.addMenuItem("ANIMAL&nbsp;REPELLANTS","location=SITE_URL+'static/repellants/'");
   mm_menu_1117153222_0.hideOnMouseOut=true;
   mm_menu_1117153222_0.bgColor='#B5B079';
   mm_menu_1117153222_0.menuBorder=1;
   mm_menu_1117153222_0.menuLiteBgColor='#B5B079';
   mm_menu_1117153222_0.menuBorderBgColor='#000000';

mm_menu_1117153222_0.writeMenus();
}
/*-----------------------Drop down menus------------------------------------*/

/*-----------------------Include function------------------------------------*/
function include_file(id, url) {
	
  var req = false;
  // For Safari, Firefox, and other non-MS browsers
  if (window.XMLHttpRequest) {
    try {
      req = new XMLHttpRequest();
    } catch (e) {
      req = false;
    }
  } else if (window.ActiveXObject) {
    // For Internet Explorer on Windows
    try {
      req = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        req = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e) {
        req = false;
      }
    }
  }
 var element = document.getElementById(id);
  if (req) {
    // Synchronous request, wait till we have it all
	req.open('GET', url, false);
    req.send(null);
    element.innerHTML = req.responseText;
  } 
}
/*-----------------------Include function------------------------------------*/

/*--------------------------highlightlink() ----------------------------*/
function holdlink(id1,id2) {		
	if (id1=='garden') {
		document.getElementById(id1).className='navhover';
		document.getElementById(id1).onmouseout='navhover';
		document.getElementById(id2+'_header').style.display='';
	}
	else
		holdlink1(id1);
}
	
function holdlink1(id1) {
	document.getElementById(id1).className='navhover';
	document.getElementById(id1).onmouseout='navhover';
	document.getElementById(id1+'_header').style.display='';
}
/*--------------------------highlightlink() ----------------------------*/
