// JavaScript Document
/*****
Dynamic Javascript Breadcrumb Navigation by Adam DuVander
http://duvinci.com/projects/javascript/crumbs/

Released under Creative Commons License:
http://creativecommons.org/licenses/by/2.5/
*****/
var crumbsep = " | ";
var precrumb = "<span class=\"crumb\">";
var postcrumb = "</span>";
var sectionsep = "/";
var rootpath = "/"; // Use "/" for root of domain.
var rootname = "Home";


var ucfirst = 1; // if set to 1, makes "directory" default to "Directory"

var objurl = new Object;
objurl['topics'] = 'All Topics';

// Grab the page's url and break it up into directory pieces
var pageurl = (new String(document.location));
var protocol = pageurl.substring(0, pageurl.indexOf("//") + 2);
pageurl = pageurl.replace(protocol, ""); // remove protocol from pageurl
var rooturl = pageurl.substring(0, pageurl.indexOf(rootpath) + rootpath.length); // find rooturl
if (rooturl.charAt(rooturl.length - 1) == "/") //remove trailing slash
{
  rooturl = rooturl.substring(0, rooturl.length - 1);
}
pageurl = pageurl.replace(rooturl, ""); // remove rooturl fro pageurl
if (pageurl.charAt(0) == '/') // remove beginning slash
{
  pageurl = pageurl.substring(1, pageurl.length);
}

var page_ar = pageurl.split(sectionsep);
var currenturl = protocol + rooturl;
var allbread = precrumb + "<a href=\"" + currenturl + "\">" + rootname + "</a>" + postcrumb; // start with root



for (i=0; i < page_ar.length-1; i++)
{
  var displayname = "";
  currenturl += "/" + page_ar[i];
  if (objurl[page_ar[i]])
  {
    displayname = objurl[page_ar[i]];
  }
  else
  {
    if (ucfirst == 1)
    {
      displayname = page_ar[i].charAt(0).toUpperCase() + page_ar[i].substring(1);
    }
    else
    {
      displayname = page_ar[i];
    }

// Find all the underlines and replace with spaces
var displayUnderline=displayname;
displayname=(displayUnderline.replace(/_/, " "));

// Find all the spaces and replace the next letter with a capital
var nameSpace = (displayname.indexOf(" "));
if (nameSpace >0)
{
nameSpace= nameSpace + 1;	
}
var nameCap=displayname.charAt(nameSpace).toUpperCase();
displayname=(displayname.replace(displayname.charAt(nameSpace), displayname.charAt(nameSpace).toUpperCase()));

//create function that gets value of display name and changes it if needed. Enter all folder name exceptions here. 
displayCheck=unescape(displayname);
// alert(displayCheck);	
switch(displayCheck){
	case "Gigastor":
	displayname="NetQoS GigaStor";
	break;
	
	case "Netvoyant":
	displayname="NetQoS NetVoyant";
	break;
	
	case "Unified Communications Monitor":
	displayname="NetQoS Unified Communications Monitor";
	break;
	
	case "Npc":
	displayname="NetQoS Performance Center";
	break;
	
	case "NPC":
	displayname="NetQoS Performance Center";
	break;	
	
	case "Reporteranalyzer":
	displayname="NetQoS ReporterAnalyzer";
	break;
	
	case "Superagent":
	displayname="NetQoS SuperAgent";
	break;	
	
	case "Voip_monitor":
	displayname="Unified Communications Monitor";
	break;		

	case "voip_monitor":
	displayname="Unified Communications Monitor";
	break;
	
		case "Voip Monitor":
	displayname="Unified Communications Monitor";
	break;
	
	case "PRess releases":
	displayname="Press Releases";
	break;	
	
	case "Newsroom":
	displayname="News ";
	break;
	
	case "Demo":
	displayname="NetQoS Product Demos";
	break;	
	
	case "Evaluation":
	displayname="NetQoS Product Evaluations";
	break;		
	
	case "Resourceroom":
	displayname="Resources";
	break;
	
	case "CiscoWAASSolutions":
	displayname="Cisco WAAS Solutions";
	break;

	case "case_studies":
	displayname="Case Studies";
	break;
	
	case "CaSe studies":
	displayname="Case Studies";
	break;	
	
	case "Webcasts":
	displayname="Webinars";
	break;	

	case "Netflow-analyzer":
	displayname="NetQoS ReporterAnalyzer";
	break;	

	case "Network Behavior_analysis":
	displayname="Network Behavior Analysis";
	break;	

	case "CiscoWAASSOlutions":
	displayname="Cisco WAAS Solutions";
	break;
	
	case "Press_releases":
	displayname="Press Releases";
	break;
	
	case "Cisco Wan_optimization":
	displayname="Cisco WAN Optimization";
	break;
	
	
	case "Metzler Tech Briefs":
	displayname="Performance-First Insight Series";
	break;
	
	case "Customers":
	displayname="Customers ";
	break;
	
	case "Solutions":
	displayname="Solutions ";
	break;
	
	case "Services":
	displayname="Services ";
	break;
	
	case "News":
	displayname="News ";
	break;
	
	case "Company":
	displayname="Company ";
	break;
	
	case "Support":
	displayname="Support ";
	break;
	
	case "By_role":
	displayname="By Role ";
	break;
	}		
}  

//create string to display
  allbread += crumbsep + precrumb + "<a href=\"" + unescape(currenturl) + "\">" + unescape(displayname) + "</a>" + postcrumb;
}



//remove forms folder from breadcrumb since we don't want people to see this

if (displayname =="Forms")
{
	removeForms=allbread.split("|");
	removeForms.pop();
	removeForms = removeForms.toString().replace(/,/g, "|");
	allbread = removeForms;
}


//remove parent function to be called lower
function removeParent(arr){
	temp = new Array()
	for (var i=0; i < arr.length; i++){
		if (i==1){
    		continue;
		}
		else{
			temp.push(arr[i]);
		}//end if
	}//end for
	
	return temp;
}//end removdParent()


//setup function to remove solutions
removeSolutions=allbread.split("|");
index=removeSolutions.length-2;

rs = removeSolutions[0];
if (index>=0)
{
	rs = removeSolutions[index];	
}//end if

removeSolutions = removeParent(removeSolutions);
removeSolutions.splice(1,0,"&nbsp;<span class='crumb'><a href='/products/'>Products</a></span>&nbsp;");
removeSolutions = removeSolutions.toString().replace(/,/g, "|");


// create and cycle through the array, if the parent is solutions, and next folder is a product, change the breadcrumb by calling the removeSolutions folder function above
var breakBread=allbread
var parent = /Solutions/g;

var arr = new Array();
arr[0] = /Allocate/g;
arr[1] = /GigaStor/g;
arr[2] = /NetQoS Performance Center/g;
arr[3] = /NetVoyant/g;
arr[4] = /ReporterAnalyzer/g;
arr[5] = /SuperAgent/g;
arr[6] = /VoIP/gi;
arr[7] = /Trade Monitor/gi;

var x=0;
for (x=0; x<8; x++)
{
if ((breakBread.match(parent)!= null)&& ((breakBread.match(arr[x]))!= null)){
//alert("found it");	
allbread = removeSolutions;
}
}

//Fix product page that shows up in solutions folder, folder is correct but we want to display the products folder with link to product page under solutions

if (document.location.toString().indexOf("solutions/products_index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(1,2,"&nbsp;<span class='crumb'><a href='/products/'>Products</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("products/voip_monitor/")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(1,2,"&nbsp;<span class='crumb'><a href='/products/'>Unified Communications Monitor</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
//Fix technical articles in resource room that shows up in solutions folder, folder is correct but we want to display the products folder with link to product page under solutions

if (document.location.toString().indexOf("resourceroom/articles/")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/resourceroom/articles'>Technical Articles</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("resourceroom/metzler_tech_briefs/")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/resourceroom/metzler_tech_briefs/'>Performance-First Insight Series</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("partners/Alliance_Partners/")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("customers/verticals.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/customers/verticals.html'>Customer List</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("customers/customer-quotes.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/customers/customer-quotes.html'>Customer Quotes</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

/*if (document.location.toString().indexOf("solutions/NPC/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/NPC/index.html'>NetQoS Performance Center</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/superagent/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/superagent/index.html'>NetQoS SuperAgent</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/superagent/features.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/superagent/index.html'>NetQoS SuperAgent</a> | <a href='/solutions/superagent/features.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/reporteranalyzer/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/reporteranalyzer/index.html'>NetQoS ReporterAnalyzer</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/reporteranalyzer/features.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/reporteranalyzer/index.html'>NetQoS ReporterAnalyzer</a> | <a href='/solutions/reporteranalyzer/features.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/netvoyant/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/netvoyant/index.html'>NetQoS NetVoyant</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/netvoyant/features.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/netvoyant/index.html'>NetQoS NetVoyant</a> | <a href='/solutions/netvoyant/features.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/voip_monitor/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/voip_monitor/index.html'>NetQoS Unified Communications Monitor</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/voip_monitor/features.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/voip_monitor/index.html'>NetQoS Unified Communications Monitor</a> | <a href='/solutions/voip_monitor/features.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/gigastor/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/gigastor/index.html'>NetQoS GigaStor</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/gigastor/features.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/gigastor/index.html'>NetQoS GigaStor</a> | <a href='/solutions/gigastor/features.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/trade_monitor/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/index.html'>Products</a> | <a href='/solutions/trade_monitor/index.html'>NetQoS Trade Monitor</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/trade_monitor/features.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/features.html'>Products</a> | <a href='/solutions/trade_monitor/index.html'>NetQoS Trade Monitor</a> | <a href='/solutions/trade_monitor/features.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}*/

if (document.location.toString().indexOf("solutions/network_behavior_analysis/network_behavior_analysis_help_you.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/npc/features.html'>Products</a> | <a href='/solutions/network_behavior_analysis/index.html'>Network Behavior Analysis</a> | <a href='/solutions/network_behavior_analysis/network_behavior_analysis_help_you.html'>Features</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/capabilities/response_time_qoe_monitoring.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/capabilities/index.html'>Capabilities</a> | <a href='/solutions/capabilities/response_time_qoe_monitoring.html'>Response Time & QoE Monitoring</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/capabilities/network_traffic_analysis.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/capabilities/index.html'>Capabilities</a> | <a href='/solutions/capabilities/network_traffic_analysis.html'>Network Traffic Analysis</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/capabilities/reporting.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/capabilities/index.html'>Capabilities</a> | <a href='/solutions/capabilities/reporting.html'>Reporting</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/capabilities/troubleshooting.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/capabilities/index.html'>Capabilities</a> | <a href='/solutions/capabilities/troubleshooting.html'>Troubleshooting</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/capabilities/capacity_planning_trending.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/capabilities/index.html'>Capabilities</a> | <a href='/solutions/capabilities/capacity_planning_trending.html'>Capacity Planning & Trending</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/capabilities/third_party_integration.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/capabilities/index.html'>Capabilities</a> | <a href='/solutions/capabilities/third_party_integration.html'>Third Party Integration</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/IT_initiatives/IT_cost_reduction.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/IT_cost_reduction.html'>IT Cost Reduction</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/IT_initiatives/ITIL_ITSM.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/ITIL_ITSM.html'>ITIL & ITSM</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/IT_initiatives/MPLS.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/MPLS.html'>MPLS</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/IT_initiatives/QoS_management.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/QoS_management.html'>QoS Management</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/IT_initiatives/voip_video.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/voip_video.html'>VoiP & Video</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/IT_initiatives/virtualization_cloud_computing.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/virtualization_cloud_computing.html'>Virtualization</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/IT_initiatives/wan_optimization.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/wan_optimization.html'>WAN Optimization</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/IT_initiatives/data_center_consolidation.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/data_center_consolidation.html'>Data Center Consolidation</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/IT_initiatives/multi-sourcing.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/IT_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/multi-sourcing.html'>Multi-sourcing</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/It_initiatives/IT_cost_reduction.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/IT_cost_reduction.html'>IT Cost Reduction</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/It_initiatives/ITIL_ITSM.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/ITIL_ITSM.html'>ITIL & ITSM</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/It_initiatives/MPLS.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/MPLS.html'>MPLS</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/It_initiatives/QoS_management.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/IT_initiatives/QoS_management.html'>QoS Management</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/It_initiatives/voip_video.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>It Initiatives</a> | <a href='/solutions/It_initiatives/voip_video.html'>VoiP & Video</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/It_initiatives/virtualization_cloud_computing.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/virtualization_cloud_computing.html'>Virtualization</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/It_initiatives/wan_optimization.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/wan_optimization.html'>WAN Optimization</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/It_initiatives/data_center_consolidation.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/data_center_consolidation.html'>Data Center Consolidation</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/It_initiatives/multi-sourcing.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/It_initiatives/index.html'>IT Initiatives</a> | <a href='/solutions/It_initiatives/multi-sourcing.html'>Multi-sourcing</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}


if (document.location.toString().indexOf("solutions/industry.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/government/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/government/index.html'>Government</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/government/")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/government/index.html'>Government</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/government/defense_intel.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/government/index.html'>Government</a> | <a href='/solutions/government/defense_intel.html'>U.S. Defense & Intelligence</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/government/federal_government.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/government/index.html'>Government</a> | <a href='/solutions/government/federal_government.html'>U.S. Federal</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/government/state_local.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/government/index.html'>Government</a> | <a href='/solutions/government/state_local.html'>U.S. State & Local</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/government/international.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/government/index.html'>Government</a> | <a href='/solutions/government/international.html'>Central & Local (non-U.S.)</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/industry_healthcare.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/industry_healthcare.html'>Healthcare</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/financial/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/financial/banking.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a> | <a href='/solutions/financial/banking.html'>Banking</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("solutions/Financial/banking.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a> | <a href='/solutions/financial/banking.html'>Banking</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/financial/securities.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a> | <a href='/solutions/financial/securities.html'>Securities</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/Financial/securities.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a> | <a href='/solutions/financial/securities.html'>Securities</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/Financial/insurance.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a> | <a href='/solutions/financial/insurance.html'>Insurance</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/financial/insurance.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/financial/index.html'>Financial</a> | <a href='/solutions/financial/insurance.html'>Insurance</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/service_providers/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/service_providers/index.html'>Service Providers</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/service_providers/differentiated_IT_services.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/service_providers/index.html'>Service Providers</a> | <a href='/solutions/service_providers/differentiated_IT_services.html'>Revenue</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/service_providers/provide_service_levels.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/service_providers/index.html'>Service Providers</a> | <a href='/solutions/service_providers/provide_service_levels.html'>Service Levels</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/service_providers/scale_IT_operations.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/service_providers/index.html'>Service Providers</a> | <a href='/solutions/service_providers/scale_IT_operations.html'>Service Delivery</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("solutions/service_providers/cobranding.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/solutions/industry.html'>Industry</a> | <a href='/solutions/service_providers/index.html'>Service Providers</a> | <a href='/solutions/service_providers/cobranding.html'>Co-brand</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/consulting.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/consulting.html'>Consulting</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/consulting-critical-problem-resolution.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/consulting.html'>Consulting</a> | <a href='/services/consulting-critical-problem-resolution.html'>Critical Problem Resolution</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/consulting-application-impact.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/consulting.html'>Consulting</a> | <a href='/services/consulting-application-impact.html'>Application Impact Analysis</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/consulting-network-health-check.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/consulting.html'>Consulting</a> | <a href='/services/consulting-network-health-check.html'>Network Health Check</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/consulting-voip-readiness.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/consulting.html'>Consulting</a> | <a href='/services/consulting-voip-readiness.html'>UC Readiness Assessment</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/netanalyst_training.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/netanalyst_training.html'>NetAnalyst </a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/netanalyst_training_leveli.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/netanalyst_training.html'>NetAnalyst</a> | <a href='/services/netanalyst_training_leveli.html'>Level I</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/netanalyst_training_levelii.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/netanalyst_training.html'>NetAnalyst</a> | <a href='/services/netanalyst_training_levelii.html'>Level II</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/netanalyst_training_onsite.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/netanalyst_training.html'>NetAnalyst</a> | <a href='/services/netanalyst_training_onsite.html'>On-site</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/netanalyst_training_schedule.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/netanalyst_training.html'>NetAnalyst</a> | <a href='/services/netanalyst_training_schedule.html'>Schedule</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/netanalyst_travel_information.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/netanalyst_training.html'>NetAnalyst</a> | <a href='/services/netanalyst_travel_information.html'>Travel Info</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("services/product.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/product.html'>Product Implementation</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/product-install.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/product.html'>Product Implementation</a> | <a href='/services/product-install.html'>Install & Configuration</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/product-quickstart.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/product.html'>Product Implementation</a> | <a href='/services/product-quickstart.html'>QuickStart</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/product-npc-integration.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/product.html'>Product Implementation</a> | <a href='/services/product-npc-integration.html'>Optimization & Training</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/product-optimization-interpretation.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/product.html'>Product Implementation</a> | <a href='/services/product-optimization-interpretation.html'>Optimization & Interpretation</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/managed_services.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/managed_services.html'>Managed Services</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/managed_services_assistant.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/managed_services.html'>Managed Services</a> | <a href='/services/managed_services_assistant.html'>Assistant</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/managed_services_advisor.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/managed_services.html'>Managed Services</a> | <a href='/services/managed_services_advisor.html'>Advisor</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("services/request-consultation.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/services/request-consultation.html'>Request Consultation</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/awards.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/awards.html'>Awards</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/events_global.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/events_global.html'>Events</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/mediakit.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/mediakit.html'>Media Kit</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/fact-sheet.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/mediakit.html'>Media Kit</a> | <a href='/newsroom/fact-sheet.html'>Fact Sheet</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/analyst_quotes.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/mediakit.html'>Media Kit</a> | <a href='/newsroom/analyst_quotes.html'>Analyst Quotes</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/logos.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/mediakit.html'>Media Kit</a> | <a href='/newsroom/logos.html'>Logos</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/alliance-partners.asp")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/cisco/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/cisco/index.html'>Cisco</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/cisco/WAAS.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/cisco/index.html'>Cisco</a> | <a href='/partners/Alliance_Partners/cisco/WAAS.html'>WAAS</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/cisco/ace.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/cisco/index.html'>Cisco</a> | <a href='/partners/Alliance_Partners/cisco/ace.html'>ACE</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/cisco/NAM.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/cisco/index.html'>Cisco</a> | <a href='/partners/Alliance_Partners/cisco/NAM.html'>NAM</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/EMC/emc.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/EMC/emc.html'>EMC</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/EMC/emc_smarts.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/cisco/index.html'>EMC</a> | <a href='/partners/Alliance_Partners/EMC/emc_smarts.html'>EMC IONIX Integration</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/microsoft/index.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/microsoft/index.html'>Microsoft</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/microsoft/OCS.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/microsoft/index.html'>Microsoft</a> | <a href='/partners/Alliance_Partners/microsoft/OCS.html'>OCS</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/microsoft/SCOM.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/microsoft/index.html'>Microsoft</a> | <a href='/partners/Alliance_Partners/microsoft/SCOM.html'>SCOM</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/Alliance_Partners/F5.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/alliance-partners.asp'>Alliance Partners</a> | <a href='/partners/Alliance_Partners/F5.html'>F5</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("partners/channel-partners.asp")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/partners/channel-partners.asp'>Channel Partners</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/board.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/board.html'>Board</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/careers.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/careers.html'>Careers</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/job_openings.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/careers.html'>Careers</a> | <a href='/company/job_openings.html'>Job Openings</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("company/college.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/careers.html'>Careers</a> | <a href='/company/college.html'>College Students</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/benefits.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/careers.html'>Careers</a> | <a href='/company/benefits.html'>Benefits</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("company/contact_global.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/contact_global.html'>Contact</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/directions.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/contact_global.html'>Contact</a> | <a href='/company/directions.html'>Directions</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/info-form.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/info-form.html'>Info Request</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("company/HR-form.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/HR-form.html'>Info Request</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("company/management.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/company/management.html'>Management</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("support/product_support.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/support/product_support.html'>Product Support</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("support/account_management.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/support/account_management.html'>Account Management</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("support/contact.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/support/contact.html'>Contact</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}

if (document.location.toString().indexOf("newsroom/articles/2009.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/2009.html'>2009</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2008.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/2008.html'>2008</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2007.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2007.html'>2007</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2006.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2006.html'>2006</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2005.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2005.html'>2005</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2004.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2004.html'>2004</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2003.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2003.html'>2003</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2002.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2002.html'>2002</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/2001.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archived Articles</a> | <a href='/newsroom/articles/2001.html'>2001</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
if (document.location.toString().indexOf("newsroom/articles/archives.html")>=0){
	productsFix=allbread.split("|");
//	alert(productsFix);
	productsFix.splice(2,2,"&nbsp;<span class='crumb'><a href='/newsroom/articles/2009.html'>Articles</a> | <a href='/newsroom/articles/archives.html'>Archives</a></span>&nbsp;");
	productsFix = productsFix.toString().replace(/,/g, "|");
	allbread = productsFix;
}
//display string on page
document.write(allbread);