// JavaScript Document
//This script changes the graphic on mouse over and a graphic in
//another part of the screen

Logo = new Image();
Logo.src = "images/logo.gif";

PageHead1 = new Image();
PageHead1.src = "images/PageHead1.gif";

PageHead2 = new Image();
PageHead2.src = "images/PageHead2.gif";

alt0 = new Image();
alt0.src = "images/HarpoonHomePage.gif";

alt1 = new Image();
alt1.src = "images/RPRHomePage.gif";

alt2 = new Image();
alt2.src = "images/RockHomePage.gif";

alt3 = new Image();
alt3.src = "images/SikuHomePage.gif";

alt4 = new Image();
alt4.src = "images/UICCHomePage.gif";

alt5 = new Image();
alt5.src = "images/UkpikHomePage.gif";

alt6 = new Image();
alt6.src = "images/WCHomePage.gif";

graphic1= new Image();
graphic1.src = "images/RainProofLogo.gif";
graphic1on = new Image();
graphic1on.src = "images/RainProofLogoOn.gif";

graphic2= new Image();
graphic2.src = "images/RockfordLogo.gif";
graphic2on = new Image();
graphic2on.src = "images/RockfordLogoOn.gif";

graphic3= new Image();
graphic3.src = "images/SikuLogo.gif";
graphic3on = new Image();
graphic3on.src = "images/SikuLogoOn.gif";

graphic4= new Image();
graphic4.src = "images/UICCLogo.gif";
graphic4on = new Image();
graphic4on.src = "images/UICCLogoOn.gif";

graphic5= new Image();
graphic5.src = "images/UkpikLLCLogo.gif";
graphic5on = new Image();
graphic5on.src = "images/UkpikLLCLogoOn.gif";

graphic6= new Image();
graphic6.src = "images/WireCommLogo.gif";
graphic6on = new Image();
graphic6on.src = "images/WireCommLogoOn.gif";

function imageChange(imageID,imageName,imageID2,imageName2) {


{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}
}
