<!--

// Preload
if (document.images) {

// START Brochure
   var a1_off = new Image(); a1_off.src = "/i/front2/Brochure-off.jpg";
   var a1_on = new Image(); a1_on.src = "/i/front2/Brochure-on.jpg";
// END Brochure

// START Presentation
   var b1_off = new Image(); b1_off.src = "/i/front2/Presentation-off.jpg";
   var b1_on = new Image(); b1_on.src = "/i/front2/Presentation-on.jpg";
// END Presentation

// START Golden Harp
   var c1_off = new Image(); c1_off.src = "/i/front2/more-off.jpg";
   var c1_on = new Image(); c1_on.src = "/i/front2/more-on.jpg";
// END Golden Harp

}

// Rollover functions

// START Brochure
function a1on() { if (document.images) document.images.a1.src = a1_on.src; }
function a1off() { if (document.images) document.images.a1.src = a1_off.src; }
// END Brochure

// START Presentation
function b1on() { if (document.images) document.images.b1.src = b1_on.src; }
function b1off() { if (document.images) document.images.b1.src = b1_off.src; }
// END Presentation

// START Golden Harp
function c1on() { if (document.images) document.images.c1.src = c1_on.src; }
function c1off() { if (document.images) document.images.c1.src = c1_off.src; }
// END Golden Harp

//-->
