if (document.images)
{
   var bhome_statusbar = ("Bird RV Home Page");
   var bhome_off = new Image(); bhome_off.src = "images/home_off.gif";
   var bhome_on = new Image(); bhome_on.src = "images/home_on.gif";

   var breservations_statusbar = ("Make some reservations!");
   var breservations_off = new Image(); breservations_off.src = "images/reservations_off.gif";
   var breservations_on = new Image(); breservations_on.src = "images/reservations_on.gif";

   var bhousekit_statusbar = ("What our House Kit contains.");
   var bhousekit_off = new Image(); bhousekit_off.src = "images/housekit_off.gif";
   var bhousekit_on = new Image(); bhousekit_on.src = "images/housekit_on.gif";

   var bpolicies_statusbar = ("Our policies and general information section.");
   var bpolicies_off = new Image(); bpolicies_off.src = "images/policies_off.gif";
   var bpolicies_on = new Image(); bpolicies_on.src = "images/policies_on.gif";

   var brates_statusbar = ("Check out these rates!");
   var brates_off = new Image(); brates_off.src = "images/rates_off.gif";
   var brates_on = new Image(); brates_on.src = "images/rates_on.gif";

   var bsale_statusbar = ("We have some great motor homes for sale!");
   var bsale_off = new Image(); bsale_off.src = "images/sale_off.gif";
   var bsale_on = new Image(); bsale_on.src = "images/sale_on.gif";

   var bbike_statusbar = ("Electric Bicycles!");
   var bbike_off = new Image(); bbike_off.src = "images/bikes_off.gif";
   var bbike_on = new Image(); bbike_on.src = "images/bikes_on.gif";

   var baccessorizeit_statusbar = ("Sure, we can sell it for you!");
   var baccessorizeit_off = new Image(); baccessorizeit_off.src = "images/accessorizeit_off.gif";
   var baccessorizeit_on = new Image(); baccessorizeit_on.src = "images/accessorizeit_on.gif";

   var blocations_statusbar = ("Locations? Have we got locations!");
   var blocations_off = new Image(); blocations_off.src = "images/locations_off.gif";
   var blocations_on = new Image(); blocations_on.src = "images/locations_on.gif";

   var bscrapbook_statusbar = ("They say a picture is worth 1,000 words!");
   var bscrapbook_off = new Image(); bscrapbook_off.src = "images/scrapbook_off.gif";
   var bscrapbook_on = new Image(); bscrapbook_on.src = "images/scrapbook_on.gif";

   var bcontact_statusbar = ("Drop us some mail.");
   var bcontact_off = new Image(); bcontact_off.src = "images/contact_off.gif";
   var bcontact_on = new Image(); bcontact_on.src = "images/contact_on.gif";

   var bautohome_statusbar = ("AutoHome Roof Top Tents!");
   var bautohome_off = new Image(); bautohome_off.src = "images/autohome_off.gif";
   var bautohome_on = new Image(); bautohome_on.src = "images/autohome_on.gif";
   
   var bautohome_statusbar = ("Temporary Mobile Housing");
   var btemporaryhousing_off = new Image(); btemporaryhousing_off.src = "images/temporary_housing_off.gif";
   var btemporaryhousing_on = new Image(); btemporaryhousing_on.src = "images/temporary_housing_on.gif";

}
function imgOn(imgName) {
    if (document.images) {
   document.images[imgName].src = eval(imgName + "_on.src") ;
   //window.status = eval(imgName + "_statusbar") ;
    }
}


function imgOff(imgName) {
    if (document.images) {
   document.images[imgName].src = eval(imgName + "_off.src") ;
   //window.status = ' ' ;
    }
}
