function addBorder(id) {
	document.getElementById(id).style.borderTop="thick solid #f86dff";
}

function removeBorder(id) {
	document.getElementById(id).style.borderTop="thick solid #000000";
}

function fbHover(id) {
	document.getElementById(id).src="images/facebook-logo_hover.png";	
}

function fbNoHover(id) {
	document.getElementById(id).src="images/facebook-logo.png";
}

function twitHover(id) {
	document.getElementById(id).src="images/twitter-logo_hover.png";	
}

function twitNoHover(id) {
	document.getElementById(id).src="images/twitter-logo.png";
}
