// JavaScript Document

if(document.images) {
pics = new Array(); 
pics[1] = new Image();
pics[1].src = "images/login.gif"; 
pics[2] = new Image();
pics[2].src = "images/loginhigh.gif";

pics[3] = new Image();
pics[3].src = "../images/home.gif"; 
pics[4] = new Image();
pics[4].src = "../images/homehigh.gif";

pics[27] = new Image();
pics[27].src = "../images/profile.gif"; 
pics[28] = new Image();
pics[28].src = "../images/profileh.gif";

pics[29] = new Image();
pics[29].src = "../images/project.gif"; 
pics[30] = new Image();
pics[30].src = "../images/projecth.gif";

pics[31] = new Image();
pics[31].src = "../images/ranking.gif"; 
pics[32] = new Image();
pics[32].src = "../images/rankingh.gif";

pics[33] = new Image();
pics[33].src = "../images/history.gif"; 
pics[34] = new Image();
pics[34].src = "../images/historyh.gif";

pics[35] = new Image();
pics[35].src = "../images/overview.gif"; 
pics[36] = new Image();
pics[36].src = "../images/overviewh.gif";

pics[37] = new Image();
pics[37].src = "../images/report.gif"; 
pics[38] = new Image();
pics[38].src = "../images/reporth.gif";

pics[39] = new Image();
pics[39].src = "../images/analysis.gif"; 
pics[40] = new Image();
pics[40].src = "../images/analysish.gif";

pics[41] = new Image();
pics[41].src = "../images/support.gif"; 
pics[42] = new Image();
pics[42].src = "../images/supporth.gif";

pics[43] = new Image();
pics[43].src = "../images/logout.gif"; 
pics[44] = new Image();
pics[44].src = "../images/logouth.gif";
}

function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}