

function showQuickNav(theLabel, theGroup, theItem)
	{
		if (theGroup)
		{
			if (document.getElementById(theGroup).style.display == 'block')
			{
				document.getElementById(theGroup).style.display = 'none';
			} else {
			closeQuickNavGroups();
			document.getElementById(theGroup).style.display = 'block';
			document.getElementById(theLabel).style.backgroundImage="url(images/background/arrow.gif)";
			document.getElementById(theLabel).style.color="#edc100";
			document.getElementById(theGroup).getElementsByTagName('a')[theItem].style.color="#000000";
			document.getElementById(theGroup).getElementsByTagName('a')[theItem].style.fontWeight="bold";
			}
		}
		else
		{
			closeQuickNavGroups();
		}
	}



function closeQuickNavGroups()
	{
		document.getElementById('g1').style.display = 'none';
		document.getElementById('g2').style.display = 'none';
		document.getElementById('g3').style.display = 'none';
		document.getElementById('g4').style.display = 'none';
		document.getElementById('g5').style.display = 'none';
		/*document.getElementById('g6').style.display = 'none';*/
		
		var e=document.getElementsByName("groupLabel");
		for(var i=0;i<e.length;i++)
		{
			e[i].style.backgroundImage = 'none';
			e[i].style.color = '';
		}
		
	}
	
function switchImage(page)
{
	if (page == "build")
	{
		document.getElementById('build').src = 'images/button/buildCase2.jpg';
	}
	if (page == "reorder")
	{
		document.getElementById('reorder').src = 'images/button/reorderProduct2.jpg';
	}
	if (page == "request")
	{
		document.getElementById('request').src = 'images/button/requestQuote2.jpg';
	}
	if (page == "survey")
	{
		document.getElementById('survey').src = 'images/button/survey2.jpg';
	}
}
	
	
	
	
	function buttonRollOver(theObject, theSrc)
	{
		if (document.URL == 'http://www.symbolicinc.com/Client/ZC/Web/buildCase.shtml')
		{
			if (theObject == document.getElementById('build'))
			{
				source = 'buildCase2.jpg';
				theObject.src = "images/button/"+source;
			}
			else
			{
				theObject.src = "images/button/"+theSrc;
			}
		}
		
		else if (document.URL == 'http://www.symbolicinc.com/Client/ZC/Web/reorder.php' || document.URL == 'http://www.symbolicinc.com/Client/ZC/Web/reorder-thanks.shtml')
		{
			if (theObject == document.getElementById('reorder'))
			{
				source = 'reorderProduct2.jpg';
				theObject.src = "images/button/"+source;
			}
			else
			{
				theObject.src = "images/button/"+theSrc;
			}
		}
		
		else if (document.URL == 'http://www.symbolicinc.com/Client/ZC/Web/requestQuote.php' || document.URL == 'http://www.symbolicinc.com/Client/ZC/Web/requestQuote-thanks.shtml')
		{
			if (theObject == document.getElementById('request'))
			{
				source = 'requestQuote2.jpg';
				theObject.src = "images/button/"+source;
			}
			else
			{
				theObject.src = "images/button/"+theSrc;
			}
		}
		
		else
		{
			theObject.src = "images/button/"+theSrc;
		}
	}
	
	
function MM_preloadImages() { //v3.0
	var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}