var oColor;

function linkOver(obj) {
	oColor = obj.style.color;
	obj.style.color = '#FF0000';
}

function linkOut(obj) {
	obj.style.color = oColor;
}

function pageLinkOver(obj, id) {
	obj.style.borderColor = '#2B55AF';
	document.getElementById(id).style.color = '#FFFFFF';
	obj.style.background = '#3666D4';
}

function pageLinkOut(obj, id) {
	obj.style.borderColor = '#CCDBE4';
	document.getElementById(id).style.color = '#3666D4';
	obj.style.background = '#FFFFFF';
}