﻿function Go(){
document.getElementById("domainckr").submit();
}
function GoTo(strUrl) {
    window.location.href = strUrl;
}

function SwitchClasses(strElementID, strNewClass) {
    var objElement = document.getElementById(strElementID);
    objElement.className = strNewClass;
}


    $(document).ready(function() {
      
      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 100,
         sensitivity: 4,
         over: addMega,
         timeout: 200,
         out: removeMega
    };
    $("li.mega").hoverIntent(megaConfig)      
    });

