if(document.getElementById("Logo") != null)
{
	document.getElementById("Logo").onclick = function()
	{
		document.location = "index.cfm";
	}
}

if(document.getElementById("QuoteLink") != null)
{
	document.getElementById("QuoteLink").onmouseover = function()
	{
		document.getElementById("QuoteLink").className = "QuoteLinkOver";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "LinkExtQuote";
	}
	
	document.getElementById("QuoteLink").onmouseout = function()
	{
		document.getElementById("QuoteLink").className = "QuoteLinkNorm";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "";
	}
	
	document.getElementById("QuoteLink").onclick = function()
	{
		document.location = "quote.cfm";
	}
}

if(document.getElementById("ProductsLink") != null)
{
	document.getElementById("ProductsLink").onmouseover = function()
	{
		document.getElementById("ProductsLink").className = "ProductsLinkOver";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "LinkExtProducts";
	}
	
	document.getElementById("ProductsLink").onmouseout = function()
	{
		document.getElementById("ProductsLink").className = "ProductsLinkNorm";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "";
	}
	
	document.getElementById("ProductsLink").onclick = function()
	{
//		document.location = "products.cfm";
	}
}

if(document.getElementById("OrderingLink") != null)
{
	document.getElementById("OrderingLink").onmouseover = function()
	{
		document.getElementById("OrderingLink").className = "OrderingLinkOver";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "LinkExtOrdering";
	}
	
	document.getElementById("OrderingLink").onmouseout = function()
	{
		document.getElementById("OrderingLink").className = "OrderingLinkNorm";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "";
	}
	
	document.getElementById("OrderingLink").onclick = function()
	{
		document.location = "ordering.cfm";
	}
}

if(document.getElementById("SamplesLink") != null)
{
	document.getElementById("SamplesLink").onmouseover = function()
	{
		document.getElementById("SamplesLink").className = "SamplesLinkOver";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "LinkExtSamples";
	}
	
	document.getElementById("SamplesLink").onmouseout = function()
	{
		document.getElementById("SamplesLink").className = "SamplesLinkNorm";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "";
	}
	
	document.getElementById("SamplesLink").onclick = function()
	{
		document.location = "samples.cfm";
	}
}

if(document.getElementById("HomeLink") != null)
{
	document.getElementById("HomeLink").onmouseover = function()
	{
		document.getElementById("HomeLink").className = "HomeLinkOver";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "LinkExtHome";
	}
	
	document.getElementById("HomeLink").onmouseout = function()
	{
		document.getElementById("HomeLink").className = "HomeLinkNorm";
		if(document.getElementById("LinkExt") != null)
			document.getElementById("LinkExt").className = "";
	}
	
	document.getElementById("HomeLink").onclick = function()
	{
		document.location = "index.cfm";
	}
}
