function rollOn(obj){
	obj.style.backgroundColor = '#BCE9D2';
	obj.firstChild.style.color = '#000000';
	obj.style.cursor = 'pointer';
}

function rollOut2(obj){
	obj.style.backgroundColor = '';
	obj.firstChild.style.color = '#333333';
}
function rollOut(obj){
	obj.style.backgroundColor = '#F5F3C4';
	obj.firstChild.style.color = '#888888';
}
function showthis (obj){
	if (obj.style.display == 'none'){
		obj.style.display.inline;
	} else {
		obj.style.display.none;
	}
}
