// home mouseover

          if (document.images)
         {
var homeoff = new Image();
homeoff.src = "navig/homeoff.gif";

var homeon = new Image();
homeon.src = "navig/homeon.gif";
}

function homeover()
         {
                        if (document.images)
                        document.images.home.src = homeon.src;
                        window.status = "home page"; return true
         }
function homeelse()
         {
                        if (document.images)
                        document.images.home.src = homeoff.src;
                        window.status = "home page"; return true

}


// links mouseover

          if (document.images)
         {
var linksoff = new Image();
linksoff.src = "navig/linksoff.gif";

var linkson = new Image();
linkson.src = "navig/linkson.gif";
}

function linkover()
         {
                        if (document.images)
                        document.images.links.src = linkson.src;
                        window.status = "links"; return true
         }
function linkelse()
         {
                        if (document.images)
                        document.images.links.src = linksoff.src;
                        window.status = "links"; return true

}


// contact us mouseover

          if (document.images)
         {
var contoff = new Image();
contoff.src = "navig/contoff.gif";

var conton = new Image();
conton.src = "navig/conton.gif";
}

function contover()
         {
                        if (document.images)
                        document.images.cont.src = conton.src;
                        window.status = "contact us"; return true
         }
function contelse()
         {
                        if (document.images)
                        document.images.cont.src = contoff.src;
                        window.status = "contact us"; return true

}

// shipping rates mouseover

          if (document.images)
         {
var shipoff = new Image();
shipoff.src = "navig/shipoff.gif";

var shipon = new Image();
shipon.src = "navig/shipon.gif";
}

function shipover()
         {
                        if (document.images)
                        document.images.ship.src = shipon.src;
                        window.status = "shipping rates"; return true
         }
function shipelse()
         {
                        if (document.images)
                        document.images.ship.src = shipoff.src;
                        window.status = "shipping rates"; return true

}

// legal info. mouseover

          if (document.images)
         {
var legaloff = new Image();
legaloff.src = "navig/legaloff.gif";

var legalon = new Image();
legalon.src = "navig/legalon.gif";
}

function legalover()
         {
                        if (document.images)
                        document.images.legal.src = legalon.src;
                        window.status = "legal info"; return true
         }
function legalelse()
         {
                        if (document.images)
                        document.images.legal.src = legaloff.src;
                        window.status = "legal info"; return true

}


