<!--

if (document.images) {  //---if browser doesn't support images, skips initializing variables




imgHomeon = new Image();
imgHomeon.src = "http://www.kitchenbathctr.com/DESIGN/B-Home_on.gif";

imgHomeoff = new Image();
imgHomeoff.src = "http://www.kitchenbathctr.com/DESIGN/B-Home_off.gif";

imgServiceson = new Image();
imgServiceson.src = "http://www.kitchenbathctr.com/DESIGN/B-Services_on.gif";

imgServicesoff = new Image();
imgServicesoff.src = "http://www.kitchenbathctr.com/DESIGN/B-Services_off.gif";

imgProductson = new Image();
imgProductson.src = "http://www.kitchenbathctr.com/DESIGN/B-Products_on.gif";

imgProductsoff = new Image();
imgProductsoff.src = "http://www.kitchenbathctr.com/DESIGN/B-Products_off.gif";

imgPortfolioon = new Image();
imgPortfolioon.src = "http://www.kitchenbathctr.com/DESIGN/B-Portfolio_on.gif";

imgPortfoliooff = new Image();
imgPortfoliooff.src = "http://www.kitchenbathctr.com/DESIGN/B-Portfolio_off.gif";

imgWhoon = new Image();
imgWhoon.src = "http://www.kitchenbathctr.com/DESIGN/B-Who_on.gif";

imgWhooff = new Image();
imgWhooff.src = "http://www.kitchenbathctr.com/DESIGN/B-Who_off.gif";

imgWhereon = new Image();
imgWhereon.src = "http://www.kitchenbathctr.com/DESIGN/B-Where_on.gif";

imgWhereoff = new Image();
imgWhereoff.src = "http://www.kitchenbathctr.com/DESIGN/B-Where_off.gif";

imgPlanningon = new Image();
imgPlanningon.src = "http://www.kitchenbathctr.com/DESIGN/B-Planning_on.gif";

imgPlanningoff = new Image();
imgPlanningoff.src = "http://www.kitchenbathctr.com/DESIGN/B-Planning_off.gif";

imgPromotionson = new Image();
imgPromotionson.src = "http://www.kitchenbathctr.com/DESIGN/B-Promotions_on.gif";

imgPromotionsoff = new Image();
imgPromotionsoff.src = "http://www.kitchenbathctr.com/DESIGN/B-Promotions_off.gif";

imgContactUson = new Image();
imgContactUson.src = "http://www.kitchenbathctr.com/DESIGN/B-ContactUs_on.gif";

imgContactUsoff = new Image();
imgContactUsoff.src = "http://www.kitchenbathctr.com/DESIGN/B-ContactUs_off.gif";



}


function imgAct(imgName){
if(document.images){
document[imgName].src=eval(imgName+"on.src");

}
}

function imgInact(imgName){
if(document.images){
document[imgName].src=eval(imgName+"off.src");

}
}

//-->