function initRollovers2()
{
// Locations - West
  var locations_west = new Image();
  locations_west.src = "/images/locations/map_usa_dia_butt01a.gif";
  var locations_west_on = new Image();
  locations_west_on.src = "/images/locations/map_usa_dia_butt01af4.gif";
  document.getElementById("locations_west").onmouseover = function()
  {
    document.getElementById("locations_west").src = locations_west_on.src;
  }
  document.getElementById("locations_west").onmouseout = function()
  {
    document.getElementById("locations_west").src = locations_west.src;
  }
  // Locations - East
  var locations_east = new Image();
  locations_east.src = "/images/locations/map_usa_dia_butt05e.gif";
  var locations_east_on = new Image();
  locations_east_on.src = "/images/locations/map_usa_dia_butt05ef4.gif";
  document.getElementById("locations_east").onmouseover = function()
  {
    document.getElementById("locations_east").src = locations_east_on.src;
  }
  document.getElementById("locations_east").onmouseout = function()
  {
    document.getElementById("locations_east").src = locations_east.src;
  }
}  