function changeBrand(which)
{
	hideArrows();
	if(which == 1)
	{
		document.getElementById("brandImage").src = "brand/8500.jpg";
		document.getElementById("brandLink").href = "/electronics/electronic-guidance-systems/8500";
		document.getElementById("brandLink").target = "_self";
	}
	else if(which == 2)
	{
		document.getElementById("brandImage").src = "brand/siltFence.jpg";
		document.getElementById("brandLink").href = "/model.asp?modid=88&attid=105#aBottom";
		document.getElementById("brandLink").target = "_self";
	}
	else if(which == 3)
	{
		document.getElementById("brandImage").src = "brand/dwOutfitters.jpg";
		document.getElementById("brandLink").href = "http://www.dwoutfitters.com";
		document.getElementById("brandLink").target = "_blank";
	}
	else if(which == 4)
	{
		document.getElementById("brandImage").src = "brand/bassEdge.jpg";
		document.getElementById("brandLink").href = "/corporate/bass-edgecorporate/bass-edge";
		document.getElementById("brandLink").target = "_self";
	}
	else if(which == 5)
	{
		document.getElementById("brandImage").src = "brand/25ThatMattered.jpg";
		document.getElementById("brandLink").href = "/25";
		document.getElementById("brandLink").target = "_blank";
	}
	
	activateArrow(which)
}
function activateArrow(which)
{
		document.getElementById("arrow" + which).style.display = "block";
		document.getElementById("brandLink" + which).setAttribute("class", "brandNavOn"); 
		document.getElementById("brandLink" + which).setAttribute("className", "brandNavOn");
}
function hideArrows()
{
	for(x=1;x<6;x++)
	{
		document.getElementById("arrow" + x).style.display = "none";
		document.getElementById("brandLink" + x).setAttribute("class", "brandNav"); 
		document.getElementById("brandLink" + x).setAttribute("className", "brandNav");
	}
}
