/* gille.js */

function onNavOver(obj) {
	obj.style.backgroundColor = '#fff';
	obj.style.opacity = 0.1;
	obj.style.filter = 'alpha(opacity=10)';
	return false;
}

function onNavOut(obj) {
	obj.style.backgroundColor = 'transparent';
	return false;
}





