
// middle nav hovers with javascript

function setNavItem() {
	var location = window.location.href;
	if (location.indexOf("inter") != -1) {
		$("a#interviews").addClass("hover");
	} else if (location.indexOf("scene") != -1) {
		$("a#scenes").addClass("hover");
	} else if (location.indexOf("stor") != -1) {
		$("a#stories").addClass("hover");
	} else if (location.indexOf("journey") != -1) {
		$("a#journey").addClass("hover");
	}
};


// loaded when DOM is ready:

$(function() {
	setNavItem();
});
