$(document).ready(function(){
  // Stretch the map to fit the proper size
  if ($("#map_url")) {
    $("#map_url > iframe").width($("#map_url").width());
    $("#map_url > iframe").height(600);
    $("#map_url > object").width($("#map_url").width());
    $("#map_url > object").height(600);
    $("#map_url > object > embed").width($("#map_url").width());
    $("#map_url > object > embed").height(600);
    $("#map_url > embed").width($("#map_url").width());
    $("#map_url > embed").height(600);
  }
});