//Atterbury Consultants menu bar

function div_click(passed_thing){ // allows user to miss hyperlink and still get there as long as they are on the div

	document.getElementById("menu_form").action = passed_thing.firstChild; // determines which page we go to
	document.getElementById("menu_form").submit();//submits the form as if it were php
}

function menu_to_store(passed_thing){

	if(passed_thing.id == "menu_head_3_menu_item_10"){ // currently, this is the used equipment item
		document.getElementById("main_page").value = "index";
		document.getElementById("cPath").value = "3";
	}

	if(passed_thing.id == "menu_head_3_menu_item_11"){ // currently, this is the NAIP item
		document.getElementById("main_page").value = "index";
		document.getElementById("cPath").value = "5";
	}
	
	//product can't be present in get or link will not go to correct page if page is an index.
	// going to have to get more complicated for additional links.
	
	document.getElementById("menu_form").method = "get";
	document.getElementById("menu_form").action = "zen_cart/index.php";
	document.getElementById("menu_form").submit();
}
