function catgOver(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = '#FFCC66';
	} 
} 

function catgOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.style.backgroundColor = color_ori;
	} 
}

function prodsNomOver(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = '#990000';
	} 
} 

function prodsNomOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.style.backgroundColor = color_ori;
	}
} 

function prodsmenuOver(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = '#444444';
	} 
} 

function prodsmenuOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.style.backgroundColor = color_ori;
	}
} 
