window.onload = highlightCurrentPage;

// allow IE to recognize HTML 5 elements
document.createElement("nav");
document.createElement("header");
document.createElement("footer");

function highlightCurrentPage(){
	var theElement;
	
	// itemStr should be set on each page, except the homepage
	if (typeof(itemStr) != "undefined") {
		theElement = document.getElementById(itemStr); 
	}
	
	var nav = document.getElementsByTagName("nav")[0];
	var anchors = nav.getElementsByTagName("a");
	
	for (i = 0; i < anchors.length; i++) {
		anchors[i].className = anchors[i].className.replace(/\sanchor_select\s/, "")
	}
	
	if (theElement) {
		if (itemStr == "menuPhotos") {
			theElement.className += " anchor_selected_photos";
		} else {
			theElement.className += " anchor_selected";
		}
	}
}

function shoot(){
	part1 = "brian";
	part2 = "@";
	part3 = "frutigergroup.com";
	combination = part1 + part2 + part3;
	document.location.href = "mailto:" & combination;
}
