



///////////////////////////////////////////////////////////////////////////////////
//// SCRIPT FOR IMAGE MOUSE OVERS


        if (document.images) {            // Active Image
            img0on = new Image();
            img0on.src = "images/home2.gif";
	    	img0off = new Image();        //inactive image
            img0off.src = "images/home1.gif";
			
			img1on = new Image();
            img1on.src = "images/about2.gif";
	    	img1off = new Image();        //inactive image
            img1off.src = "images/about1.gif";
			
			img2on = new Image();
            img2on.src = "images/contact2.gif";
	    	img2off = new Image();        //inactive image
            img2off.src = "images/contact1.gif";
			
			img3on = new Image();
            img3on.src = "images/faq2.gif";
	    	img3off = new Image();        //inactive image
            img3off.src = "images/faq1.gif";

	    	img4on = new Image();
            img4on.src = "images/testimonials2.gif";
	    	img4off = new Image();        //inactive image
            img4off.src = "images/testimonials1.gif";
			
			img6on = new Image();
            img6on.src = "images/network_on.gif";
	    	img6off = new Image();        //inactive image
            img6off.src = "images/network_off.gif";

	    	img7on = new Image();
            img7on.src = "images/web_on.gif";
	    	img7off = new Image();        //inactive image
            img7off.src = "images/web_off.gif";

	    	img8on = new Image();
            img8on.src = "images/it2.gif";
	    	img8off = new Image();        //inactive image
            img8off.src = "images/it1.gif";

	    	img9on = new Image();
            img9on.src = "images/other_on.gif";
	    	img9off = new Image();        //inactive image
            img9off.src = "images/other_off.gif";

	    	img10on = new Image();
            img10on.src = "images/buscon2.gif";
	    	img10off = new Image();        //inactive image
            img10off.src = "images/buscon1.gif";		
			
			img11on = new Image();
            img11on.src = "images/cybersecurity2.gif";
	    	img11off = new Image();        //inactive image
            img11off.src = "images/cybersecurity1.gif";				
		
			img12on = new Image();
            img12on.src = "images/DRP2.gif";
	    	img12off = new Image();        //inactive image
            img12off.src = "images/DRP1.gif";	
			
			img13on = new Image();
            img13on.src = "images/reg2.gif";
	    	img13off = new Image();        //inactive image
            img13off.src = "images/reg1.gif";	
			
			img14on = new Image();
            img14on.src = "images/partners2.gif";
	    	img14off = new Image();        //inactive image
            img14off.src = "images/partners1.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");
        }
}

