if (document.images) {

home_on = new Image();

home_on.src = "rollovers/home_yellow.gif";

home_off = new Image();

home_off.src = "rollovers/home_blue.gif";



gallery_on = new Image();

gallery_on.src = "rollovers/gallery_yellow.gif";

gallery_off = new Image();

gallery_off.src = "rollovers/gallery_blue.gif";



info_on = new Image();

info_on.src = "rollovers/info_yellow.gif";

info_off = new Image();

info_off.src = "rollovers/info_blue.gif";



aromaspa_on = new Image();

aromaspa_on.src = "rollovers/aromaspa_yellow.gif";

aromaspa_off = new Image();

aromaspa_off.src = "rollovers/aromaspa_blue.gif";



specs1_on = new Image();

specs1_on.src = "rollovers/specs1_yellow.gif";

specs1_off = new Image();

specs1_off.src = "rollovers/specs1_blue.gif";



specs2_on = new Image();

specs2_on.src = "rollovers/specs2_yellow.gif";

specs2_off = new Image();

specs2_off.src = "rollovers/specs2_blue.gif";



newlines_on = new Image();

newlines_on.src = "rollovers/newlines_yellow.gif";

newlines_off = new Image();

newlines_off.src = "rollovers/newlines_blue.gif";



contact_on = new Image();

contact_on.src = "rollovers/contact_yellow.gif";

contact_off = new Image();

contact_off.src = "rollovers/contact_blue.gif";





}

function On(imgName) {

if (document.images) {

document[imgName].src = eval(imgName + "_on.src");

}

}

function Off(imgName) {

if (document.images) {

document[imgName].src = eval(imgName + "_off.src");

}

}