/********************		UNIVERSAL MOUSEOVERS		********************/
/*global window getElementById */

function menuMouseOver(target,targetTxt){
	window.document.getElementById(target).style.borderBottom="solid 3px #e7941d";
	window.document.getElementById(target).style.cursor="pointer";
	window.document.getElementById(targetTxt).style.color="#fff";
}

function menuMouseAway(target,targetTxt){
	window.document.getElementById(target).style.borderBottom="none";
	window.document.getElementById(target).style.cursor="default";
	window.document.getElementById(targetTxt).style.color="#557f87";
}

function transporter(destination){
	window.location.href=destination;
}

function portfolioHighlight(thisImg){
	window.document.getElementById(thisImg).style.border="solid 2px #e7941d";
}

function portfolioLowlight(thisImg){
	window.document.getElementById(thisImg).style.border="solid 2px #fff";
}