﻿// JScript File

function inicio()
{
   var obj = document.getElementById('tabla_cuerpo_central');
   obj.style.borderColor ='#000066';
   obj.style.borderWidth= '1px';
    obj.style.borderStyle = 'solid';
    var obj2 = document.getElementById('barra_superior');
   obj2.style.background='#000066';
}
function farmaclub()
{
   var obj = document.getElementById('tabla_cuerpo_central');
   obj.style.border='1px solid #cc0066';
    var obj2 = document.getElementById('barra_superior');
   obj2.style.background='#cc0066';
}
function nosotros()
{
   var obj = document.getElementById('tabla_cuerpo_central');
   obj.style.border='1px solid #ff9900';
   var obj2 = document.getElementById('barra_superior');
   obj2.style.background='#ff9900';
   
   
}
function clientes()
{
   var obj = document.getElementById('tabla_cuerpo_central');
   obj.style.border='1px solid #0099ff';
    var obj2 = document.getElementById('barra_superior');
   obj2.style.background='#0099ff';
}
function servicios()
{
   var obj = document.getElementById('tabla_cuerpo_central');
   obj.style.border='1px solid #336699';
    var obj2 = document.getElementById('barra_superior');
   obj2.style.background='#336699';
}
function proveedores()
{
   var obj = document.getElementById('tabla_cuerpo_central');
   obj.style.border='1px solid #ff6600';
    var obj2 = document.getElementById('barra_superior');
   obj2.style.background='#ff6600';
}