/**
 * \file - title.js
 *
 * preloads images
 */

var img_Byline1 = new Image();
var img_About1 = new Image();
var img_Technologies1 = new Image();
var img_Customers1 = new Image();
var img_Rates1 = new Image();
var img_Contact1 = new Image();
var img_Byline2 = new Image();
var img_About2 = new Image();
var img_Technologies2 = new Image();
var img_Customers2 = new Image();
var img_Rates2 = new Image();
var img_Contact2 = new Image();

img_Byline1.src = "title/Byline1.gif";
img_About1.src = "title/About1.gif";
img_Technologies1.src = "title/Technologies1.gif";
img_Customers1.src = "title/Customers1.gif";
img_Rates1.src = "title/Rates1.gif";
img_Contact1.src = "title/Contact1.gif";
img_Byline2.src = "title/Byline2.gif";
img_About2.src = "title/About2.gif";
img_Technologies2.src = "title/Technologies2.gif";
img_Customers2.src = "title/Customers2.gif";
img_Rates2.src = "title/Rates2.gif";
img_Contact2.src = "title/Contact2.gif";
            //  preload button images into the cache

// switches preloaded images
//
function img_switch(ImgTagName, newImgName) 
{
  document.images[ImgTagName].src = newImgName;
}
