﻿// JScript File - Image preloading


function imageLoad()
 {
    imgArray = new Array();
    
    imgArray[0] = "images/aboutMenuItem.jpg";
    imgArray[1] = "images/aboutMenuItem-H.jpg";
    imgArray[2] = "images/serviceMenuItem.jpg";
    imgArray[3] = "images/serviceMenuItem-H.jpg";
    imgArray[6] = "images/contactMenuItem.jpg";
    imgArray[7] = "images/contactMenuItem-H.jpg";
    imgArray[8] = "images/homeMenuItem.jpg";
    imgArray[9] = "images/homeMenuItem-H.jpg";
    
    arrayLen = imgArray.length
  
    for (i=0; i<=arrayLen; i++)
     {
      imgObj = new Image();
      imgObj.src=imgArray[i];
      imgArray[i] = imgObj;
     }
 }

function assignImages()
 {
   document.getElementById("menu00").style.backgroundImage="url('" + imgArray[8].src + "')";
   document.getElementById("menu01").style.backgroundImage="url('" + imgArray[0].src + "')";
   document.getElementById("menu02").style.backgroundImage="url('" + imgArray[2].src + "')";
   document.getElementById("menu04").style.backgroundImage="url('" + imgArray[6].src + "')";
 }

