<!--
// PRELOADING IMAGES
if (document.images) {

 img_onA 	=	new Image();  img_onA.src ="images/button1.jpg"; 
 img_offA	=	new Image();  img_offA.src="images/button2.jpg";
 img_onB 	=	new Image();  img_onB.src ="images/button1.jpg"; 
 img_offB	=	new Image();  img_offB.src="images/button2.jpg";
 img_onC 	=	new Image();  img_onC.src ="images/button1.jpg"; 
 img_offC	=	new Image();  img_offC.src="images/button2.jpg";
 img_onD 	=	new Image();  img_onD.src ="images/button1.jpg"; 
 img_offD	=	new Image();  img_offD.src="images/button2.jpg";
 img_onE 	=	new Image();  img_onE.src ="images/button1.jpg"; 
 img_offE	=	new Image();  img_offE.src="images/button2.jpg";
 img_onF 	=	new Image();  img_onF.src ="images/button1.jpg"; 
 img_offF	=	new Image();  img_offF.src="images/button2.jpg";
 img_onG 	=	new Image();  img_onG.src ="images/button1.jpg"; 
 img_offG	=	new Image();  img_offG.src="images/button2.jpg";
 img_onI 	=	new Image();  img_onI.src ="images/button1.jpg"; 
 img_offI	=	new Image();  img_offI.src="images/button2.jpg";
 img_onJ 	=	new Image();  img_onJ.src ="images/button1.jpg"; 
 img_offJ	=	new Image();  img_offJ.src="images/button2.jpg";
 img_onM 	=	new Image();  img_onM.src ="images/button1.jpg"; 
 img_offM	=	new Image();  img_offM.src="images/button2.jpg";
 img_onN 	=	new Image();  img_onN.src ="images/button1.jpg"; 
 img_offN	=	new Image();  img_offN.src="images/button2.jpg";
}

function handleOverA() {
    if (document.images) document.imgNameA.src=img_onA.src;
	document.getElementById("txtHint").innerHTML="<b>About Us</b>"; 
}
function handleOutA(txt) {

    if (document.images) document.imgNameA.src=img_offA.src;  
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>";  
}

function handleOverB() { 
     if (document.images) document.imgNameB.src=img_onB.src;
	 document.getElementById("txtHint").innerHTML="<b>Mission Statement</b>"; 
}
function handleOutB(txt) {
	if (document.images) document.imgNameB.src=img_offB.src;   
    document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>";
}

function handleOverC() { 
     if (document.images) document.imgNameC.src=img_onC.src;
	 document.getElementById("txtHint").innerHTML="<b>Quality Assurance System</b>"; 
}
function handleOutC(txt) {

	if (document.images) document.imgNameC.src=img_offC.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>"; 
}
function handleOverD() { 
    if (document.images) document.imgNameD.src=img_onD.src;
	document.getElementById("txtHint").innerHTML="<b>Occupational Health & Safety</b>"; 
}
function handleOutD(txt) {
	if (document.images) document.imgNameD.src=img_offD.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>";
}
function handleOverE() { 
    if (document.images) document.imgNameE.src=img_onE.src;
	document.getElementById("txtHint").innerHTML="<b>Risk Assessment and Management System</b>"; 
}
function handleOutE(txt) {
	if (document.images) document.imgNameE.src=img_offE.src; 
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>";   
}
function handleOverF() { 
    if (document.images) document.imgNameF.src=img_onF.src;
	document.getElementById("txtHint").innerHTML="<b>Projects</b>"; 
}
function handleOutF(txt) {
	if (document.images) document.imgNameF.src=img_offF.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>"; 
}
function handleOverG() { 
    if (document.images) document.imgNameG.src=img_onG.src;
	document.getElementById("txtHint").innerHTML="<b>Contact Us</b>"; 
}
function handleOutG(txt) {
	if (document.images) document.imgNameG.src=img_offG.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>"; 
}
function handleOverI() { 
    if (document.images) document.imgNameI.src=img_onI.src;
	document.getElementById("txtHint").innerHTML="<b>Employment</b>"; 
}
function handleOutI(txt) {
	if (document.images) document.imgNameI.src=img_offI.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>"; 
}
function handleOverJ() { 
    if (document.images) document.imgNameJ.src=img_onJ.src;
	document.getElementById("txtHint").innerHTML="<b>Testimonials</b>"; 
}
function handleOutJ(txt) {
	if (document.images) document.imgNameJ.src=img_offJ.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>"; 
}

function handleOverM() { 
    if (document.images) document.imgNameM.src=img_onM.src;
	document.getElementById("txtHint").innerHTML="<b>Home</b>"; 
}
function handleOutM(txt) {
	if (document.images) document.imgNameM.src=img_offM.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>";
}

function handleOverN() { 
    if (document.images) document.imgNameN.src=img_onN.src;	
	document.getElementById("txtHint").innerHTML="<b>Services</b>"; 
}
function handleOutN(txt) {
	if (document.images) document.imgNameN.src=img_offN.src;   
	document.getElementById("txtHint").innerHTML="<b>" + txt + "<b>"; 
}

//-->


