// Cached images
company1 = new Image
company2 = new Image
team1 = new Image
team2 = new Image
background1 = new Image
background2 = new Image
contact1 = new Image
contact2 = new Image
home1 = new Image
home2 = new Image
bullet = new Image
comm1 = new Image
comm2 = new Image
inst1 = new Image
inst2 = new Image
ren1 = new Image
ren2 = new Image
indust1 = new Image
indust2 = new Image

// addresses to the images
company1.src = "images/company1.gif"
company2.src = "images/company2.gif"
team1.src = "images/team1.gif"
team2.src = "images/team2.gif"
background1.src = "images/background1.gif"
background2.src = "images/background2.gif"
contact1.src = "images/contact1.gif"
contact2.src = "images/contact2.gif"
home1.src = "images/home1.gif"
home2.src = "images/home2.gif"
bullet.src = "images/bullet.gif"
comm1.src = "images/commpic2.gif"
comm2.src = "images/commpic1.gif"
inst1.src = "images/instpic2.gif"
inst2.src = "images/instpic1.gif"
ren1.src = "images/renpic2.gif"
ren2.src = "images/renpic1.gif"
indust1.src = "images/indpic2.gif"
indust2.src = "images/indpic1.gif"


function toggleDiv(divId)
{
  var divElem = document.getElementById(divId);
  if (divElem.style.display == "block")
  {
    divElem.style.display = "none";
  }
  else
  {
    divElem.style.display = "block";
  }      
}

function setBullet(bulletId)
{
  var bullet = document.getElementById(bulletId);
  bullet.style.visibility = "visible";
}

function loadHome()
{
  setBullet('homeBullet');
}

function loadCompany()
{
  setBullet('companyBullet');
}

function loadTeam()
{
  setBullet('teamBullet');
}

function loadBackground()
{
  setBullet('backgroundBullet');
  var bgDiv = document.getElementById('bgLinks');
  bgDiv.style.display = "block";
}

function loadContact()
{
  setBullet('contactBullet');
}
