////
//// support code for HAI site home page
////

//
// required:
//   jquery.js (version 1.2.6+) (see jquery.com)
//

$(document).ready(function(){

    ////
    //// slideshow
    ////

    $('#divintrophoto').cycle({
        delay:  0,
        timeout:  6000,
        speed: 1000,
        pause: 1
    });

    ////
    //// research country overlays
    ////

    $('#divresearch table a').each( function() {
      var countrycode = this.className;
      var overlay = $("<img src='/img/home/map/"+countrycode+".gif' class='overlay' id='imgover_"+countrycode+"' />");
      $("#divresearchmap").append(overlay);
      $(this).hover(
        function() { $("#imgover_"+countrycode).show(); },
        function() { $("#imgover_"+countrycode).hide(); });
    });

});
