// JavaScript Document
function changeText(obj){
	obj.style.color="#BBBBBB";
	obj.style.fontSize="10pt";
	obj.style.cursor="hand";
}

function revertText(obj){
	obj.style.color="#FFFFFF";
	obj.style.fontSize="11pt";
}

function changeText2(obj){
	obj.style.color="#888888";
	obj.style.fontSize="10pt";
	obj.style.cursor="hand";
}

function revertText2(obj){
	obj.style.color="#FF9933";
	obj.style.fontSize="11pt";
	obj.style.fontWeight="bold";
}