// http://www.sethorian.net Javascript file. Feel free to copy whatever you desire. I don't care about being credited,
// just be a nice lad and don't copy my entire site design. ;) 

// This function handles the onmouseover events over the hyperlink images that redirect a user to the
// portfolio or personal website. 
function mouseOver(id){
	if(id == "portfolio"){
		document.getElementById(id).src = "img/enter_portfolio_highlight.gif";
	}
	if(id == "personal"){
		document.getElementById(id).src = "img/enter_personal_highlight.gif";
	}
}

// This function handles the onmouseout events over the hyperlink images that redirect a user to the
// portfolio or personal website. 
function mouseOut(id){
	if(id == "portfolio"){
		document.getElementById(id).src = "img/enter_portfolio.gif";
	}
	if(id == "personal"){
		document.getElementById(id).src = "img/enter_personal.gif";
	}
}