// this javascript uses jQuery to swap the map for the homepage

jq(document).ready(function() {

 // shows and hides and toggles the slickbox on click  
  jq('a.mapswap').hover(
    function() {
      var regionid = jq(this).parent().attr("id");
      jq('#region-map-img').attr({ src: portal_url + '/++resource++wagpet.theme.images/' + regionid + '.gif'});
    },
    function() {
      var regionid = jq(this).parent().attr("id");
      jq('#region-map-img').attr({ src: portal_url + '/++resource++wagpet.theme.images/region-base.gif'});
    }
  );

});