// Role Over Code   
        if (document.images) {
            img1off = new Image();          
            img1off.src ="images/nav_1_home_0.gif";       // Inactive Images
            img2off = new Image(); 
            img2off.src ="images/nav_2_quest_0.gif";  
			img3off = new Image(); 
            img3off.src ="images/nav_3_adventures_0.gif";   
            img4off = new Image(); 
            img4off.src ="images/nav_4_tourism_0.gif";   
            img5off = new Image(); 
            img5off.src ="images/nav_5_founder_0.gif";   
            img6off = new Image(); 
            img6off.src ="images/nav_6_contact_0.gif";
			img7off = new Image(); 
            img7off.src ="images/nav_7_gallery_0.gif";
			
            img1on = new Image();          
            img1on.src ="images/nav_1_home_1.gif";       // Active Images
            img2on = new Image(); 
            img2on.src ="images/nav_2_quest_0.gif";   
			img3on = new Image(); 
            img3on.src ="images/nav_3_adventures_0.gif"; 
            img4on = new Image(); 
            img4on.src ="images/nav_4_tourism_0.gif";   
            img5on = new Image(); 
            img5on.src ="images/nav_5_founder_0.gif";   
            img6on = new Image(); 
            img6on.src ="images/nav_6_contact_0.gif"; 
			img7on = new Image(); 
            img7on.src ="images/nav_7_gallery_0.gif"; 
			
		shop_mm = new Image();
		shop_mm.src = "images/shoptop.gif"  

        }

		// Function to 'activate' images.
		function imgOn(imgName) {
		        if (document.images) {
		            //document[imgName].src = eval(imgName + "on.src");
					str = document[imgName].src;
					str = str.substring(0, str.length-5);			
					document[imgName].src = str + "1.gif";
		        }
		}
		// Function to 'deactivate' images.
		function imgOff(imgName) {
		        if (document.images) {
					//document[imgName].src = eval(imgName + "off.src");
					str = document[imgName].src;
					str = str.substring(0, str.length-5);            
					document[imgName].src = str + "0.gif";
		        }
		}