
//this code will highlight the top nav in relationship to the page type
//contentType and companySegment are global variables defined on the masterpage

$(document).ready( function(){
	if(!contentType)
	  return;
	else if(contentType=="Business")
	  $("#Business-Title").addClass("active");
	else if(contentType=="PaperProduct" ||contentType=="ConsumerPackaging" || contentType=="IndustrialPackaging")
	  $("#Product-Title").addClass("active");
	else if(contentType=="Company"){
	  if(!companySegment)
	    $("#Company-Title").addClass("active");
	  else if(companySegment=="Careers")
	    $("#Careers-Title").addClass("active");
	  else if(companySegment=="Investors")
	    $("#Investors-Title").addClass("active");
	  else if(companySegment=="Sustainability")
	    $("#Sustainability-Title").addClass("active");
	  else
	    $("#Company-Title").addClass("active");
	}
});