//Inicio completa las direcciones absolutas, necesarias para las URLs amigables
function completarUrl(url){
	//url="http://www.qabalah.com.ec/qabalah/"+url;
	//url="http://localhost/qabalahServidor/"+url;
	url="http://www.qabalah.com.ec/"+url;
	return url;
}
//FIN completar direcciones

function limpiarBusqueda(){
	if(document.getElementById('query').value == 'Buscar'){
		document.getElementById('query').value='';
	}
}
function llenarBusqueda(){
	if(document.getElementById('query').value == ''){
		document.getElementById('query').value='Buscar';
	}
}

//Inicio Menu
function sobreInicio(){
	document.getElementById('inicio').src=completarUrl("imagenes/cabecera1/inicio3_btn.gif");
}
function fueraInicio(){
	document.getElementById('inicio').src=completarUrl("imagenes/cabecera1/inicio1_btn.gif");
}

function sobreServicios(){
	document.getElementById('servicios').src=completarUrl("imagenes/cabecera1/servicios3_btn.gif");
}
function fueraServicios(){
	document.getElementById('servicios').src=completarUrl("imagenes/cabecera1/servicios1_btn.gif");
}

function sobreSoluciones(){
	document.getElementById('soluciones').src=completarUrl("imagenes/cabecera1/soluciones3_btn.gif");
}
function fueraSoluciones(){
	document.getElementById('soluciones').src=completarUrl("imagenes/cabecera1/soluciones1_btn.gif");
}

function sobrePortafolio(){
	document.getElementById('portafolio').src=completarUrl("imagenes/cabecera1/portafolio3_btn.gif");
}
function fueraPortafolio(){
	document.getElementById('portafolio').src=completarUrl("imagenes/cabecera1/portafolio1_btn.gif");
}

function sobreContactenos(){
	document.getElementById('contactenos').src=completarUrl("imagenes/cabecera1/contactenos3_btn.gif");
}
function fueraContactenos(){
	document.getElementById('contactenos').src=completarUrl("imagenes/cabecera1/contactenos1_btn.gif");
}

function sobreEnviar(){
	document.getElementById('enviar').src=completarUrl("imagenes/cabecera2/enviar2.gif");
}
function fueraEnviar(){
	document.getElementById('enviar').src=completarUrl("imagenes/cabecera2/enviar1.gif");
}
//Fin Menu
