// JavaScript Document
function ChangeBg(){
	document.getElementById('last_box').style.display = "none";
	document.getElementById('rouge').style.display = "block";
}

function RedBg(){
	document.getElementById('last_box').style.display = "block";
	document.getElementById('rouge').style.display = "none";
}

function Moto_over(){
	
document.images["moto"].src = "images/transporte-de-motocicletas-en-panama-rojo.png";
}
//MOTO MOUSEOVER
function Moto_out(){
	
document.images["moto"].src = "images/transporte-de-motocicletas-en-panama.png";
}
//MOTO MOUSEOVER

function personal_over(){
	
document.images["personal"].src = "images/transporte-de-efectos-personales-rojo.png";
}
//MOTO MOUSEOVER

function personal_out(){
	
document.images["personal"].src = "images/transporte-de-efectos-personales.png";
}
//MOTO MOUSEOVER

function terrestre_over(){
	
document.images["terrestre"].src = "images/transporte-terrestre-en-panama-rojo.png";
}

function terrestre_out(){
	
document.images["terrestre"].src = "images/transporte-terrestre-en-panama.png";
}

function cotizar_over(){
	
document.images["cotizar"].src = "images/cotize-con-nosotros-rojo.png";
}

function cotizar_out(){
	
document.images["cotizar"].src = "images/cotize-con-nosotros.png";
}

