// Index JavaScript file for solutionsciences.com
// Copyright 2002, Solution Sciences Inc., All rights reserved
//
// This file contains functions for the index page
// The "images.js" file should be included *before* this one


// highest index of images that we want to do a rollover for
var maxImageIndex = 20;

// first index of the images in the tech bar
var firstTechIndex = 14;

// number of images in the tech bar
var techLength = 5;

// image arrays to cache image objects 
var hiArray = createArray(maxImageIndex);
var lowArray = createArray(maxImageIndex);

// loading images into arrays:

hiArray[5].src = "images/blur_in.gif";
hiArray[6].src = "images/services.gif";
hiArray[7].src = "images/blur_in.gif";
hiArray[8].src = "images/company.gif";
hiArray[9].src = "images/blur_in.gif";
hiArray[10].src = "images/partners.gif";
hiArray[11].src = "images/blur_in.gif";
hiArray[12].src = "images/contact.gif";
hiArray[13].src = "images/blur_in.gif";
hiArray[14].src = "images/tech_hardware_hi.gif";
hiArray[15].src = "images/tech_embedded_hi.gif";
hiArray[16].src = "images/tech_desktop_hi.gif";
hiArray[17].src = "images/tech_palmtop_hi.gif";
hiArray[18].src = "images/tech_web_hi.gif";

lowArray[5].src = "images/blur_out.gif";
lowArray[6].src = "images/services_low.gif";
lowArray[7].src = "images/blur_out.gif";
lowArray[8].src = "images/company_low.gif";
lowArray[9].src = "images/blur_out.gif";
lowArray[10].src = "images/partners_low.gif";
lowArray[11].src = "images/blur_out.gif";
lowArray[12].src = "images/contact_low.gif";
lowArray[13].src = "images/blur_out.gif";
lowArray[14].src = "images/tech_hardware_low.gif";
lowArray[15].src = "images/tech_embedded_low.gif";
lowArray[16].src = "images/tech_desktop_low.gif";
lowArray[17].src = "images/tech_palmtop_low.gif";
lowArray[18].src = "images/tech_web_low.gif";



