// JavaScript Document

function showCategoriaOver(obj) {
	obj.style.backgroundColor = '#e5e5e5';
	obj.style.cursor = 'pointer';
}

function showCategoriaOut(obj) {
	obj.style.backgroundColor = '';
	obj.style.cursor = 'auto';
}