// used for the rollover on news / market news pages
function activateBackground(el) {
	el.style.backgroundColor = '#F1EEEA';
}
function deactivateBackground(el) {
	el.style.backgroundColor = '';
}
