// JavaScript Document<!--
	  if (document.images) {
	  		img0on = new Image();          
            img0on.src =  "layout/images/button-news2.gif";
            img1on = new Image();          
            img1on.src =  "layout/images/button-services2.gif";   
            img2on = new Image();          
            img2on.src =  "layout/images/button-staff2.gif";     		
            img3on = new Image();          
            img3on.src =  "layout/images/button-forms2.gif";
			img4on = new Image();          
            img4on.src =  "layout/images/button-links2.gif";   
            img5on = new Image();          
            img5on.src =  "layout/images/button-about2.gif";
			img6on = new Image();          
            img6on.src =  "layout/images/button-contact2.gif";  
			            
            // Active Images (rollover)
			  
	        img0off = new Image();          
            img0off.src =  "layout/images/button-news1.gif";
            img1off = new Image();          
            img1off.src =  "layout/images/button-services1.gif";   
            img2off = new Image();          
            img2off.src =  "layout/images/button-staff1.gif";     		
            img3off = new Image();          
            img3off.src =  "layout/images/button-forms1.gif";
			img4off = new Image();          
            img4off.src =  "layout/images/button-links1.gif";   
            img5off = new Image();          
            img5off.src =  "layout/images/button-about1.gif";
			img6off = new Image();          
            img6off.src =  "layout/images/button-contact1.gif";  
			// INactive Images
			
			 }

// Function to 'activate' images.
function imgOn(number) {
        if (document.images) {
            document["img" + number].src = eval("img" + number + "on.src");
            }
}
// Function to 'deactivate' images.
function imgOff(number) {
        if (document.images) {
            document["img" + number].src = eval("img" + number + "off.src");
           }
}
//-->
