// Change canRollOver to true in JavaScript 1.1
canRollOver = true;

// Primary and rollover image sources #1
passion1out = new Image(290,61); 
passion1out.src = 'images/giving_side1_off.gif';
passion1over = new Image(290,61); 
passion1over.src = 'images/giving_side1_on.gif';

// Primary and rollover image sources #2
philanthropy1out = new Image(290,51); 
philanthropy1out.src = 'images/giving_side2_off.gif';
philanthropy1over = new Image(290,51); 
philanthropy1over.src = 'images/giving_side2_on.gif';

// Primary and rollover image sources #3
solve1out = new Image(290,57); 
solve1out.src = 'images/giving_side3_off.gif';
solve1over = new Image(290,57); 
solve1over.src = 'images/giving_side3_on.gif';

// Primary and rollover image sources #4
shopping1out = new Image(290,70); 
shopping1out.src = 'images/giving_side4_off.gif';
shopping1over = new Image(290,70); 
shopping1over.src = 'images/giving_side4_on.gif';

// Primary and rollover image sources #5
donateout = new Image(290,31); 
donateout.src = 'images/giving/donate_off.gif';
donateover = new Image(290,31); 
donateover.src = 'images/giving/donate_on.gif';



// Conditionally perform the rollovers in JavaScript 1.0
function imageSwap(imageName, imageSuffix) {
     if (!canRollOver) { return; }
     document[imageName].src = eval(imageName + imageSuffix + ".src");
     }
function display(stuff) { window.status = stuff; }

