$(document).ready(function() {
      
      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 500,
         sensitivity: 4,
         over: addMega,
         timeout: 500,
         out: removeMega
    };

    $("li.mega").hoverIntent(megaConfig)
    
    //simple tweaks
    $("#foot2 span a:first-child").addClass('first');
    $(".specpanes table tr td:last-child").addClass('last');
    

	

    
}); // end doc ready




function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}







