// Highlight relevant elements in the service nav

glow.ready(function() {	
					
	var href = window.location.href;
	var mainBody = glow.dom.get("body");

	if ( href.indexOf("schedules") != -1 ) {
	
		mainBody.addClass("service-schedules");
		
	}
	
	else if ( href.indexOf("documentaries") != -1 ) {
		
		mainBody.addClass("service-documentaries");
		
	}
	
	else {  }
	
	
});	