

var MouseOverArray = new Array();
var MouseOutArray = new Array();


function mouseOver(oImage){

	if(oImage.id =="acerca"){
		document.getElementById('acerca').style.color='#6D94E3'
		document.getElementById('productos').style.color='#033599'
		document.getElementById('ofertas').style.color='#033599'
		document.getElementById('clientes').style.color='#033599'
		document.getElementById('contactar').style.color='#033599'
		document.getElementById('acerca_fmb').style.visibility = 'visible';
		document.getElementById('productos_fmb').style.visibility= 'hidden';
	}
	if(oImage.id =="productos"){
		document.getElementById('acerca').style.color='#033599'
		document.getElementById('productos').style.color='#6D94E3'
		document.getElementById('ofertas').style.color='#033599'
		document.getElementById('clientes').style.color='#033599'
		document.getElementById('contactar').style.color='#033599'
		document.getElementById('acerca_fmb').style.visibility = 'hidden';
		document.getElementById('productos_fmb').style.visibility = 'visible';
	}
	if(oImage.id =="ofertas"){
		document.getElementById('acerca').style.color='#033599'
		document.getElementById('productos').style.color='#033599'
		document.getElementById('ofertas').style.color='#6D94E3'
		document.getElementById('clientes').style.color='#033599'
		document.getElementById('contactar').style.color='#033599'
		document.getElementById('acerca_fmb').style.visibility = 'hidden';
		document.getElementById('productos_fmb').style.visibility = 'hidden';
	}
	if(oImage.id =="clientes"){
		document.getElementById('acerca').style.color='#033599'
		document.getElementById('productos').style.color='#033599'
		document.getElementById('ofertas').style.color='#033599'
		document.getElementById('clientes').style.color='#6D94E3'
		document.getElementById('contactar').style.color='#033599'
		document.getElementById('acerca_fmb').style.visibility = 'hidden';
		document.getElementById('productos_fmb').style.visibility = 'hidden';
	}
	if(oImage.id =="contactar"){
		document.getElementById('acerca').style.color='#033599'
		document.getElementById('productos').style.color='#033599'
		document.getElementById('ofertas').style.color='#033599'
		document.getElementById('clientes').style.color='#033599'
		document.getElementById('contactar').style.color='#6D94E3'
		document.getElementById('acerca_fmb').style.visibility = 'hidden';
		document.getElementById('productos_fmb').style.visibility = 'hidden';
	}
	
}
 
function mouseOut(oImage){
	//oImage.src = MouseOutArray[oImage.id].src;
	
}
