if (document.images) {            // Active Images
	img1on = new Image();      
    img1on.src = "/_mc/res/solutions_portfolio_on.jpg"; 
	img2on = new Image();      
    img2on.src = "/_mc/res/products_on.jpg"; 
	img3on = new Image();      
    img3on.src = "/_mc/res/services_on.jpg"; 
	img4on = new Image();      
    img4on.src = "/_mc/res/about_mccoy_on.jpg"; 
	img5on = new Image();      
    img5on.src = "/_mc/res/resources_on.jpg"; 
	
  
    img1off = new Image();      
    img1off.src = "/_mc/res/solutions_portfolio.jpg";  
	img2off= new Image();      
    img2off.src = "/_mc/res/products.jpg"; 
	img3off = new Image();      
    img3off.src = "/_mc/res/services.jpg"; 
	img4off = new Image();      
    img4off.src = "/_mc/res/about_mccoy.jpg";
	img5off = new Image();      
    img5off.src = "/_mc/res/resources.jpg"; 
	
}



// 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");
        }
}



function setStyle(objId, style, value){
   document.getElementById(objId).style[style]= value;
}
/* USAGE:
 * objId    = element id.
 * style    = the style to be changed.
 * value    = the value assigned to the style.
*/ 


// -->
