function highlightCurrentPage(itemStr){
	var theElement = document.getElementById(itemStr);
	
	if(itemStr == "menuPhotos") {
		theElement.style.color = "#FFFFFF";
		theElement.style.backgroundColor = "#464646";
		theElement.style.borderBottom = "solid #464646 22px ";
		theElement.style.borderTop = "solid #464646 3px ";
		theElement.style.borderLeft = "solid #464646 3px ";
		theElement.style.borderRight = "solid #464646 3px ";
	} else {
		theElement.style.color = "#FFFFFF";
		theElement.style.backgroundColor = "#5B7DC7";
		theElement.style.borderBottom = "solid #5B7DC7 22px ";
		theElement.style.borderTop = "solid #5B7DC7 3px ";
		theElement.style.borderLeft = "solid #5B7DC7 3px ";
		theElement.style.borderRight = "solid #5B7DC7 3px ";
	}
	
}

function shoot(){
	part1 = "brian";
	part2 = "@";
	part3 = "frutigergroup.com";
	combination = part1 + part2 + part3;
	document.location.href = "mailto:" & combination;
}