function doOver(imgSrc, imgId){
    if(imgSrc.indexOf("On") != -1){
        //on section that called
         if(thisSection==7927 && imgId=="services"){
            document.getElementById("about").src = "images/about2.jpg"
        }
        if(thisSection==7928 && imgId=="resources"){
            document.getElementById("services").src = "images/services2.jpg"
        }
        if(thisSection==7929 && imgId=="news"){
            document.getElementById("resources").src = "images/resources2.jpg"
        }
        if(thisSection==7930 && imgId=="contact"){
            document.getElementById("news").src = "images/news2.jpg"
        }
    
    }else{
        if(thisSection==7927 && imgId=="about"){
            document.getElementById("about").src = "images/aboutOn.jpg"
        }
        if(thisSection==7928 && imgId=="services"){
            document.getElementById("services").src = "images/servicesOn.jpg"
        }
        if(thisSection==7929 && imgId=="resources"){
            document.getElementById("resources").src = "images/resourcesOn.jpg"
        }
        if(thisSection==7930 && imgId=="news"){
            document.getElementById("news").src = "images/newsOn.jpg"
        }
        
        document.getElementById(imgId).src = "images/" + imgId + "On.jpg";
    }
    
}

function doOut(imgSrc, imgId){
    if(imgSrc.indexOf("On") == -1){
    }else{
        document.getElementById(imgId).src = "images/" + imgId + ".jpg";
    }
    
}
