var preloadAll = false;

function preloadImages() {
  if (document.images) {
    homeIn = new Image(); homeIn.src = 'images/home1.gif';
    homeAc = new Image(); homeAc.src = 'images/home2.gif';
    biographyIn = new Image(); biographyIn.src = 'images/biography1.gif';
    biographyAc = new Image(); biographyAc.src = 'images/biography2.gif';
    operaRepIn = new Image(); operaRepIn.src = 'images/opera_rep1.gif';
    operaRepAc = new Image(); operaRepAc.src = 'images/opera_rep2.gif';
    symphonicRepIn = new Image(); symphonicRepIn.src = 'images/sympho_rep1.gif';
    symphonicRepAc = new Image(); symphonicRepAc.src = 'images/sympho_rep2.gif';
    reviewsIn = new Image(); reviewsIn.src = 'images/reviews1.gif';
    reviewsAc = new Image(); reviewsAc.src = 'images/reviews2.gif';
    discographyIn = new Image(); discographyIn.src = 'images/discography1.gif';
    discographyAc = new Image(); discographyAc.src = 'images/discography2.gif';
    contactsIn = new Image(); contactsIn.src = 'images/contacts1.gif';
    contactsAc = new Image(); contactsAc.src = 'images/contacts2.gif';

    preloadAll = true;
  }
}

function active(imgName) {
  if (document.images && (preloadAll == true)) {
    img = eval(imgName + "Ac.src");
    document[imgName].src = img;
  }
}

function inactive(imgName) {
  if (document.images && (preloadAll == true)) {
    img = eval(imgName + "In.src");
    document[imgName].src = img;
  }
}
