function chgEnvSubNav() {
   
   //This function turns subnav red 
   var loc = top.location.href;
   var anchorTags = document.getElementsByTagName("a");

    for (var i = 0; i < anchorTags.length ; i++) {

	if ( (anchorTags[i].innerText == "Gold Derby" || anchorTags[i].text == "Gold Derby") && (loc.indexOf('http://goldderby.latimes.com/') > -1) ) { anchorTags[i].style.color='#CC0000'; break;}
	if ( (anchorTags[i].innerText == "Styles & Scenes" || anchorTags[i].text == "Styles & Scenes") && (loc.indexOf('http://stylescenes.latimes.com/') > -1) ) { anchorTags[i].style.color='#CC0000'; break;}

    }
}

chgEnvSubNav();
