﻿//function hover(currentcontrol) {
//    DivhelpfulReasons.style.display = "none";
//    DivChoosingFrames.style.display = "none";
//    DivImportantInformation.style.display = "none";
//    DivFeaturesAndBenefits.style.display = "none";
//   // currentcontrol.style.display = "block";
//}

//function out() {
//    DivhelpfulReasons.style.display = "none";
//    DivChoosingFrames.style.display = "none";
//    DivImportantInformation.style.display = "none";
//    DivFeaturesAndBenefits.style.display = "none"; 
//}

function invert(currentcontrol) {

    document.getElementById('tdhome').style.backgroundColor = "#113366";
    document.getElementById('tdaboutus').style.backgroundColor = "#113366";
    document.getElementById('tdclaims').style.backgroundColor = "#113366";
    document.getElementById('tdcontactus').style.backgroundColor = "#113366";
    document.getElementById('tdtps').style.backgroundColor = "#113366";
    document.getElementById('tdSustain').style.backgroundColor = "#113366";
    //document.getElementById('tdMaliciousDamage').style.backgroundColor = "#113366";
    document.getElementById('tdLinks').style.backgroundColor = "#113366";
    document.getElementById(currentcontrol).style.backgroundColor = "#FFFFFF";
    //var a = document.getElementById(currentcontrol);
    //a.style.backgroundColor = "white";
}

function invertOut() {
   
    document.getElementById('tdhome').style.backgroundColor = "#113366";
    document.getElementById('tdaboutus').style.backgroundColor = "#113366";
    document.getElementById('tdclaims').style.backgroundColor = "#113366";
    document.getElementById('tdcontactus').style.backgroundColor = "#113366";
    document.getElementById('tdtps').style.backgroundColor = "#113366";
    document.getElementById('tdSustain').style.backgroundColor = "#113366";
//  document.getElementById('tdMaliciousDamage').style.backgroundColor = "#113366";
    document.getElementById('tdLinks').style.backgroundColor = "#113366";
}

function MenuIn(currentcontrol) {
    currentcontrol.style.backgroundColor = "#FF3311";
}

function MenuOut(currentcontrol) {
    currentcontrol.style.backgroundColor = "#EEEEFF";
}


