var HeaderTopLine = {};

HeaderTopLine.MouseOver = function(oObject){
	oObject.style.cursor = 'pointer';
	oObject.style.backgroundColor = oObject.getAttribute('MouseOverColor');
	oObject.style.color = oObject.getAttribute('MouseOverTextColor');
}

HeaderTopLine.MouseOut = function(oObject){
	
	oObject.style.backgroundColor = oObject.getAttribute('CurrentColor');
	oObject.style.color = oObject.getAttribute('CurrentTextColor');

	
}