/* CharCodeSetWord µþ */

function aOver (obj, color) {

	obj.style.backgroundColor = '#' + color;
	obj.style.cursor = 'pointer';
	
}

function aOut (obj) {

	obj.style.backgroundColor = 'transparent';
	obj.style.cursor = 'auto';

}

function aOut2 (obj, color) {

	obj.style.backgroundColor = '#' + color;
	obj.style.cursor = 'auto';

}

function aClick (page) { top.location.href = page; }

