function menu_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = '#FFFFFF';
	} 
} 

function menu_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
		src.style.backgroundColor = color_ori;
	} 
}

function ma_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand'; 
	} 
} 

function ma_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
	} 
}

function menuTop_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.backgroundColor = '#990000';
		src.style.color = '#FFFFFF';
		src.style.cursor = 'hand'; 
	} 
} 

function menuTop_Out(src) {
	if (!src.contains(event.toElement)) {
		src.style.backgroundColor = color_ori;
		src.style.color = color_ori;
		src.style.backgroundColor = color_ori;
	} 
}

function menumain_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.color = '#000000';
		src.style.backgroundColor = '#FFCC00';
	} 
} 

function menumain_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
		src.style.color = '#FFFFFF';
		src.style.backgroundColor = color_ori;
	} 
}

function news_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.fontWeight = 'bold';
	} 
} 

function news_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
	    src.style.fontWeight = 'normal';
	} 
}

function selectonList_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.color = '#000000';
		src.style.backgroundColor = '#FFCC00';
	} 
} 

function selectonList_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
		src.style.color = '#FFFFFF';
		src.style.backgroundColor = color_ori;
	} 
}

function copyright(e) {
if (event.button == 2){
alert('2000-2005 © Fibran S.A.')
}
}
document.onmousedown=copyright