$(document).ready(function() {
  instantiate_mapRollover();
});

function instantiate_mapRollover() {
  var init = $('.location_map').size();
  if (init!=0) {
    if ($.browser.msie && $.browser.version < 7) {
      DD_belatedPNG.fix('.png_bg');
    }

    $('.location_map .list_locations li a, .location_map .map_points a').hover(
  		function() {
  			var mp = $(this).attr("rel");
  			$(mp).addClass("active");
  		},
  		function() {
  			var mp = $(this).attr("rel");
  			$(mp).removeClass("active");
  		}
  	);
  }
}

