// ========================================================================
// Copyright 2005, Lexitech Ltd
// ========================================================================
// $Id: domestic_restoration.js 11 2005-05-19 16:50:57Z tprice $
// ========================================================================

// Use this in conjunction with linkRolloverMod.js

// globals
var imagesNormal;
var imagesHilite;

function precacheImages() {

    if (document.images) {

        imagesNormal = new Object();
        imagesNormal["dom1-img"] = new Image(205, 259);
        imagesNormal["dom1-img"].src = "images/page_05/domestic_restoration_2.jpeg";

        imagesHilite = new Object();
        imagesHilite["dom1-img"] = new Image(205, 259);
        imagesHilite["dom1-img"].src = "images/page_05/domestic_restoration_1.jpeg"
    }
}

function initEvents() {
    precacheImages();
    // top-level event handlers grab bubbled events
    document.onmouseover = setImage;
    document.onmouseout = setImage;
}
