// NAVIGATION /////////////////////////////////////////////////

var Base="../../media/images/comm_images/comm_pics/";

if (document.images) {

    zero_turnDIM = new Image();   zero_turnDIM.src = Base + "zero_turn_pic.jpg";
    zero_turnLIT = new Image();   zero_turnLIT.src = Base + "zero_turn_pic.jpg";

    front_mowersDIM = new Image();   front_mowersDIM.src = Base + "front_mowers_pic.jpg";
    front_mowersLIT = new Image();   front_mowersLIT.src = Base + "front_mowers_pic.jpg";
               
    walk_behindDIM = new Image();   walk_behindDIM.src = Base + "walk_behind_pic.jpg";
    walk_behindLIT = new Image();   walk_behindLIT.src = Base + "walk_behind_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";

    trimmersDIM = new Image();   trimmersDIM.src = Base + "trimmers_pic.jpg";
    trimmersLIT = new Image();   trimmersLIT.src = Base + "trimmers_pic.jpg";

    skid_steersDIM = new Image();   skid_steersDIM.src = Base + "skid_steers_pic.jpg";
    skid_steersLIT = new Image();   skid_steersLIT.src = Base + "skid_steers_pic.jpg";

    attachmentsDIM = new Image();   attachmentsDIM.src = Base + "attachments_pic.jpg";
    attachmentsLIT = new Image();   attachmentsLIT.src = Base + "attachments_pic.jpg";

    landscapeDIM = new Image();   landscapeDIM.src = Base + "landscape_pic.jpg";
    landscapeLIT = new Image();   landscapeLIT.src = Base + "landscape_pic.jpg";
	
	compact_utilityDIM = new Image();   compact_utilityDIM.src = Base + "compact_utility_pic.jpg";
    compact_utilityLIT = new Image();   compact_utilityLIT.src = Base + "compact_utility_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");       
	}
}