// JavaScript Document

var tempColor;// temp storage for reverting to original color

function rollOver(el){
		tempColor = el.style.color; // save current text color value
		el.style.color = "#ffffff";
		meEls = el.getElementsByTagName('*');
		if(meEls.length > 0) meEls[0].style.color = "#ffffff";
		el.style.cursor = "pointer";
	}
function rollOut(el){
		el.style.color = tempColor; // revert to last saved text color value
		meEls = el.getElementsByTagName('*');
		if(meEls.length > 0) meEls[0].style.color = tempColor;
		el.style.cursor = "normal";
	}