<!-- hide
browserOK = true;
pics = new Array();
// -->

<!-- hide
var objCount = 0;
function preload(name, first, second) { 
if (browserOK) { 
pics[objCount] = new Array(3);
pics[objCount][0] = new Image();
pics[objCount][0].src = first;
pics[objCount][1] = new Image();
pics[objCount][1].src = second;
pics[objCount][2] = name;
objCount++;
}
}
function on(name){
if (browserOK) {
for (i = 0; i < objCount; i++) {
if (document.images[pics[i][2]] != null)
if (name != pics[i][2]) { 
document.images[pics[i][2]].src = pics[i][0].src;
} else {
document.images[pics[i][2]].src = pics[i][1].src;
}
}
}
}

function off(){
if (browserOK) {
for (i = 0; i < objCount; i++) {
if (document.images[pics[i][2]] != null) 
document.images[pics[i][2]].src = pics[i][0].src;
}
}
}

preload("image1", "/images/home/office_fitouts.jpg", "/images/home/office_fitouts2.jpg");
preload("image2", "/images/home/office_seating_chairs.jpg", "/images/home/office_seating_chairs2.jpg");
preload("image3", "/images/home/office_workstations_desks.jpg", "/images/home/office_workstations_desks2.jpg");
preload("image4", "/images/home/office_storage.jpg", "/images/home/office_storage2.jpg");
preload("image5", "/images/home/screen_systems.jpg", "/images/home/screen_systems2.jpg");
preload("image6", "/images/home/office_tables_accessories.jpg", "/images/home/office_tables_accessories2.jpg");
// -->