function overLink(id, color) {

	document.getElementById(id).style.color= '#' + color;
	
}

function outLink(id) {

	document.getElementById(id).style.color='#505050';
	
}

function changeThumb(id, th_c) {
	document.getElementById(id).src = "./images/thumbs/" + th_c;
}
