
/*Added by Wipro for Primary Navigation Links*/
function activePrmLink() {
	var winLoc = window.location.href;
	var folderName = "html/"; // word appears before section folder name in URL
	var folderLgt = folderName.length;
	var index = winLoc.indexOf(folderName);
	var lastIndex = winLoc.lastIndexOf("/");
	var getVal = winLoc.slice(index+folderLgt, lastIndex);
	var docElement = document.getElementById(getVal).firstChild;
	docElement.style.backgroundImage = "url(../../ventoline/img/ventoline-activeLink-arrow.gif)";
	docElement.style.backgroundRepeat = "no-repeat";
	docElement.style.backgroundPosition = "left center";
	docElement.style.color = "#b12674";
}

