/* rollover functions
 * By David Stott 23/1/2001
 */
 
function highlight(imgName) { 
document.images[imgName].src = onImages[imgName].src;} 

function unhighlight(imgName) { 
document.images[imgName].src= offImages[imgName].src;} 

var onImages = new Array;
var offImages = new Array;

onImages["home"] = new Image();
onImages["home"].src = "images/home2.gif";
offImages["home"] = new Image();
offImages["home"].src = "images/home.gif";	

onImages["objectives"] = new Image();
onImages["objectives"].src = "images/objectives2.gif";
offImages["objectives"] = new Image();
offImages["objectives"].src = "images/objectives.gif";	

onImages["report"] = new Image();
onImages["report"].src = "images/report2.jpg";
offImages["report"] = new Image();
offImages["report"].src = "images/report.jpg";	

onImages["summary"] = new Image();
onImages["summary"].src = "images/summary2.jpg";
offImages["summary"] = new Image();
offImages["summary"].src = "images/summary.jpg";	

onImages["conclusions"] = new Image();
onImages["conclusions"].src = "images/conclusions2.jpg";
offImages["conclusions"] = new Image();
offImages["conclusions"].src = "images/conclusions.jpg";	

onImages["recs"] = new Image();
onImages["recs"].src = "images/recommend2.jpg";
offImages["recs"] = new Image();
offImages["recs"].src = "images/recommend.jpg";	

onImages["nextsteps"] = new Image();
onImages["nextsteps"].src = "images/nextsteps2.gif";
offImages["nextsteps"] = new Image();
offImages["nextsteps"].src = "images/nextsteps.gif";	

onImages["eupra"] = new Image();
onImages["eupra"].src = "images/EUPRAdown.gif";
offImages["eupra"] = new Image();
offImages["eupra"].src = "images/EUPRAup.gif";	
