function tableMenuItem(obj) {

	obj.style.cursor='pointer';
	obj.style.border='none';
	obj.style.backgroundImage='url(/files/images/icons/arrow-right.png)';
}
function tableMenuItemOff(obj) {
	if(dropmenuobj.style.visibility == "visible") {
		obj.style.backgroundImage='url(/files/images/icons/arrow-right.png)';
		obj.style.borderRight='1px solid #000000';
	} else {
		obj.style.backgroundImage='none';
		obj.style.backgroundColor = "#FFFFFF";
		obj.style.borderRight='1px solid #000000';
	}
	obj.className='tablestdcell';
}