function highlight(item) {
	item.style.fontSize='12px';
	item.style.zIndex='500';
	item.style.backgroundColor='#ffffff';
}

function deselect(item) {
	item.style.fontSize='9.5px';
	item.style.zIndex='3';
	item.style.backgroundColor='transparent';
}

