<!--

// Preload
if (document.images) {

// START image1
   var a1_off = new Image(); a1_off.src = "/i/front/services-off.jpg";
   var a1_on = new Image(); a1_on.src = "/i/front/services-on.jpg";
// END image1

// START image2
   var a2_off = new Image(); a2_off.src = "/i/front/brochure-off.jpg";
   var a2_on = new Image(); a2_on.src = "/i/front/brochure-on.jpg";
// END image2

// START image3
   var a3_off = new Image(); a3_off.src = "/i/front/photos-off.jpg";
   var a3_on = new Image(); a3_on.src = "/i/front/photos-on.jpg";
// END image3

}

}
// Rollover functions

// START image1
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 image1

// START image2
function a2on() { if (document.images) document.images.a2.src = a2_on.src; }
function a2off() { if (document.images) document.images.a2.src = a2_off.src; }
// END image2

// START image3
function a3on() { if (document.images) document.images.a3.src = a3_on.src; }
function a3off() { if (document.images) document.images.a3.src = a3_off.src; }
// END image3


//-->

