// NAVIGATION /////////////////////////////////////////////////

var Base="../../media/images/res_images/res_pics/";

if (document.images) {
     
	riding_mowersDIM = new Image();   riding_mowersDIM.src = Base + "riding_mowers_pic.jpg";
    riding_mowersLIT = new Image();   riding_mowersLIT.src = Base + "riding_mowers_pic.jpg";

    utilityDIM = new Image();   utilityDIM.src = Base + "compact_utility_pic.jpg";
    utilityLIT = new Image();   utilityLIT.src = Base + "compact_utility_pic.jpg";

    gator_utilityDIM = new Image();   gator_utilityDIM.src = Base + "gator_utility_pic.jpg";
    gator_utilityLIT = new Image();   gator_utilityLIT.src = Base + "gator_utility_pic.jpg";

    ATVsDIM = new Image();   ATVsDIM.src = Base + "ATVs_pic.jpg";
    ATVsLIT = new Image();   ATVsLIT.src = Base + "ATVs_pic.jpg";

    walk_mowersDIM = new Image();   walk_mowersDIM.src = Base + "walk_mowers_pic.jpg";
    walk_mowersLIT = new Image();   walk_mowersLIT.src = Base + "walk_mowers_pic.jpg";

    snow_equipDIM = new Image();   snow_equipDIM.src = Base + "snow_equip_pic.jpg";
    snow_equipLIT = new Image();   snow_equipLIT.src = Base + "snow_equip_pic.jpg";

    attachmentsDIM = new Image();   attachmentsDIM.src = Base + "attachments_pic.jpg";
    attachmentsLIT = new Image();   attachmentsLIT.src = Base + "attachments_pic.jpg";

    trimmersDIM = new Image();   trimmersDIM.src = Base + "trimmers_pic.jpg";
    trimmersLIT = new Image();   trimmersLIT.src = Base + "trimmers_pic.jpg";

    workshopDIM = new Image();   workshopDIM.src = Base + "workshop_pic.jpg";
    workshopLIT = new Image();   workshopLIT.src = Base + "workshop_pic.jpg";

    landscapeDIM = new Image();   landscapeDIM.src = Base + "landscape_pic.jpg";
    landscapeLIT = new Image();   landscapeLIT.src = Base + "landscape_pic.jpg";
}             
                
function imgOn(imgName,target) {
	if (document.images) {
		document[target].src = eval(imgName + "LIT.src");       
	}
}
                
function imgOff(imgName,target) {
	if (document.images) {
		document[target].src = eval(imgName + "DIM.src");       
	}
}
