function hover1 (evntobj,param) {

		if(evntobj.style.backgroundColor=='')
			evntobj.style.backgroundColor = '#000000';
		else
			evntobj.style.backgroundColor = '';

}
function hover2 (evntobj,state) {
	evntobj.style.backgroundColor = 'on' == state ? '#CCCCCC' : '#EEEEEE';	
}
