/* ----------------------------------------------------------------
function createNav() - create all the image-based drop-down navigation
	Each call to "addNav2" adds one item to a drop-down menu and
	takes three arguments:
		1. the menu # to add to (1 is "integrated circuit design", 2 is "validation...")
		2. the text description is what will be displayed as the link
		3. the url to link to
	Items will be listed in the drop-down menu in the order they are called.  
	
---------------------------------------------------------------- */

function createNav2() {

	//left nav
	
	addNav2(1," CORPORATE INFORMATION","about/corp_info.aspx");
	addNav2(1," PRIVACY POLICY","about/privacy.aspx");

	addNav2(2," FENCE PLANNING BASICS","products/fence_planning_basics.aspx");
	addNav2(2," FENCE PRODUCTS","products/fence_components.aspx");
	addNav2(2," ANIMAL SYSTEMS","products/animal_systems.aspx");

	addNav2(3," INSTALLATION INFORMATION","support/installation.aspx");
	addNav2(3," TROUBLESHOOTING","support/troubleshooting.aspx");
	addNav2(3," WARRANTY INFORMATION","support/warranty.aspx");




}


function createNav3() {
	

	addNav3(2,1," FENCE GENERAL FAQ","products/fence_planning_general_faq.aspx");
	addNav3(2,1," ELECTRIC FENCE FAQ","products/fence_planning_electric_faq.aspx");
	addNav3(2,1," FENCE BUILDER&#153;","products/fenceplanningtool.aspx");
	addNav3(2,1," GLOSSARY","products/fence_planning_glossary.aspx");
	addNav3(2,2," CONTROLLERS","products/fence_controllers.aspx");	
	addNav3(2,2," INSULATORS","products/insulators.aspx");
	addNav3(2,2," TAPE, WIRE & ROPE","products/wire_tape_rope.aspx");
	addNav3(2,2," FENCE KITS","products/kits.aspx");
	addNav3(2,2," HIGH TENSILE","products/high_tensile.aspx");
	addNav3(2,2," POSTS","products/posts.aspx");
	addNav3(2,2," ACCESSORIES","products/fence_accessories.aspx");
	addNav3(2,2," EQUINE","products/products_equine.aspx");
	
	addNav3(2,3," LIVESTOCK","products/animal_livestock.aspx");
	addNav3(2,3," EQUINE","products/animal_equine.aspx");
	addNav3(2,3," PET","products/animal_pet.aspx");
	addNav3(2,3," EXOTIC","products/animal_exotic.aspx");
	addNav3(2,3," PREDATOR","products/animal_predator.aspx");
	addNav3(2,3," CRITTER","products/animal_critter.aspx");;
	

	addNav3(3,1," INSTALLATION FAQ","support/faq.aspx");
	addNav3(3,1," INSTALLATION PARTS LIST","support/install_parts.aspx");
	
	addNav3(3,2," TIPS AND TRICKS","support/tips.aspx");
	addNav3(3,2," VOLTAGE TESTER COMPARISONS","support/test.aspx");
	addNav3(3,2," REPLACEMENT PARTS","support/parts.aspx");
	addNav3(3,2," CONTROLLER REPAIRS","support/basic.aspx");
	addNav3(3,2," REPAIR CENTERS","support/repair_centers.aspx");



}
