// JavaScript Document
if (document.images) {            // Active Images
            img1on = new Image();      
            img1on.src = "/images/navigation/about-the-center-over.gif";

            img1off = new Image(); 
            img1off.src = "/images/navigation/about-the-center.gif";
            
			img2on = new Image();      
            img2on.src = "/images/navigation/support-the-center-over.gif";

            img2off = new Image(); 
            img2off.src = "/images/navigation/support-the-center.gif";  
			
            img3on = new Image();      
            img3on.src = "/images/navigation/pioneers-over.gif";

            img3off = new Image(); 
            img3off.src = "/images/navigation/pioneers.gif";            
            
            img4on = new Image();      
            img4on.src = "/images/navigation/upcoming-events-over.gif";

            img4off = new Image(); 
            img4off.src = "/images/navigation/upcoming-events.gif";  
            
            img5on = new Image();      
            img5on.src = "/images/navigation/rent-the-center-over.gif";

            img5off = new Image(); 
            img5off.src = "/images/navigation/rent-the-center.gif";  
            
            img6on = new Image();      
            img6on.src = "/images/navigation/consumer-info-over.gif";

            img6off = new Image(); 
            img6off.src = "/images/navigation/consumer-info.gif";  
			
			img7on = new Image();      
            img7on.src = "/education/images/navigation/educational-programs-over.gif";

            img7off = new Image(); 
            img7off.src = "/education/images/navigation/educational-programs.gif";  
			
			img8on = new Image();      
            img8on.src = "/education/images/navigation/professionalEducation-over.gif";

            img8off = new Image(); 
            img8off.src = "/education/images/navigation/professionalEducation.gif";  
			
			img9on = new Image();      
            img9on.src = "/education/images/navigation/exhibits-over.gif";

            img9off = new Image(); 
            img9off.src = "/education/images/navigation/exhibits.gif";  
			
			img10on = new Image();      
            img10on.src = "/education/images/navigation/library-over.gif";

            img10off = new Image(); 
            img10off.src = "/education/images/navigation/library.gif";  
			
			img11on = new Image();      
            img11on.src = "/education/images/navigation/bookstore-over.gif";

            img11off = new Image(); 
            img11off.src = "/education/images/navigation/bookstore.gif";  
			
			img12on = new Image();      
            img12on.src = "/education/images/navigation/library-blog-over.gif";

            img12off = new Image(); 
            img12off.src = "/education/images/navigation/library-blog.gif";  
        
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}


imagePreload1 = new Image();
imagePreload1.src = "admin/images/cornerBL.gif";

imagePreload2 = new Image();
imagePreload2.src = "admin/images/cornerBR.gif";

imagePreload3 = new Image();
imagePreload3.src = "admin/images/cornerTL.gif";

imagePreload4 = new Image();
imagePreload4.src = "admin/images/cornerTL.gif";

function changeStyle(objectID,styleName,newval)
{
	var dom = findDOM(objectID,1);
	dom[styleName] = newVal;
}