function changeFont(thick){
		thick.style.fontWeight = "bold";
}
function turnBack(thick){
	thick.style.fontWeight = "normal";
}
function changeBackground(bgc){
	bgc.style.background = '#ffffff'
}
function returnBackground(bgc){
	bgc.style.background = '#DFEBF9'
}
