function addVenuesToMap() {
  var regexp = new RegExp("\\b(mailto|(f|ht)tp(|s))://");
  var image_size = 20;

          
    // ------ The Potteries Museum & Art Gallery ------
    venue_coords = new google.maps.LatLng(53.023025,-2.178158);
    BCBMap.bounds.extend( venue_coords );

    BCBMap.markers[1] = new google.maps.Marker({
      position: venue_coords,
      map: BCBMap.map,
      title: "The Potteries Museum &amp; Art Gallery",
      icon: 'images/site/gmap-vertical-marker-black.png'
    });

    google.maps.event.addListener(BCBMap.markers[1], 'mouseover', function(e) {
      BCBMap.showInfo(e, ""+
            "", 0, "The Potteries Museum &amp; Art Gallery");
    });

    google.maps.event.addListener(BCBMap.markers[1], 'mouseout', function() {
      BCBMap.noInfo();
    });

    google.maps.event.addListener(BCBMap.markers[1], 'click', function() {
      document.location.href = MIYOLib._conf.siteBaseURL+'/plan-your-visit/whats-on/?eventVenue=1';
    });

        
    // ------ Original Spode Factory Site ------
    venue_coords = new google.maps.LatLng(53.00517,-2.185446);
    BCBMap.bounds.extend( venue_coords );

    BCBMap.markers[2] = new google.maps.Marker({
      position: venue_coords,
      map: BCBMap.map,
      title: "Original Spode Factory Site",
      icon: 'images/site/gmap-vertical-marker-black.png'
    });

    google.maps.event.addListener(BCBMap.markers[2], 'mouseover', function(e) {
      BCBMap.showInfo(e, ""+
            "", 0, "Original Spode Factory Site");
    });

    google.maps.event.addListener(BCBMap.markers[2], 'mouseout', function() {
      BCBMap.noInfo();
    });

    google.maps.event.addListener(BCBMap.markers[2], 'click', function() {
      document.location.href = MIYOLib._conf.siteBaseURL+'/plan-your-visit/whats-on/?eventVenue=2';
    });

        
    // ------ AirSpace Gallery - 4 Broad Street, City Centre, ST1 4HL ------
    venue_coords = new google.maps.LatLng(53.023636,-2.178414);
    BCBMap.bounds.extend( venue_coords );

    BCBMap.markers[3] = new google.maps.Marker({
      position: venue_coords,
      map: BCBMap.map,
      title: "AirSpace Gallery - 4 Broad Street, City Centre, ST1 4HL",
      icon: 'images/site/gmap-vertical-marker-black.png'
    });

    google.maps.event.addListener(BCBMap.markers[3], 'mouseover', function(e) {
      BCBMap.showInfo(e, ""+
            "", 0, "AirSpace Gallery - 4 Broad Street, City Centre, ST1 4HL");
    });

    google.maps.event.addListener(BCBMap.markers[3], 'mouseout', function() {
      BCBMap.noInfo();
    });

    google.maps.event.addListener(BCBMap.markers[3], 'click', function() {
      document.location.href = MIYOLib._conf.siteBaseURL+'/plan-your-visit/whats-on/?eventVenue=3';
    });

        
    // ------ Across Stoke-on-Trent ------
    venue_coords = new google.maps.LatLng(53,-2.183333);
    BCBMap.bounds.extend( venue_coords );

    BCBMap.markers[15] = new google.maps.Marker({
      position: venue_coords,
      map: BCBMap.map,
      title: "Across Stoke-on-Trent",
      icon: 'images/site/gmap-vertical-marker-black.png'
    });

    google.maps.event.addListener(BCBMap.markers[15], 'mouseover', function(e) {
      BCBMap.showInfo(e, ""+
            "", 0, "Across Stoke-on-Trent");
    });

    google.maps.event.addListener(BCBMap.markers[15], 'mouseout', function() {
      BCBMap.noInfo();
    });

    google.maps.event.addListener(BCBMap.markers[15], 'click', function() {
      document.location.href = MIYOLib._conf.siteBaseURL+'/plan-your-visit/whats-on/?eventVenue=15';
    });

        
    // ------ Staffordshire University ------
    venue_coords = new google.maps.LatLng(53.010083,-2.182606);
    BCBMap.bounds.extend( venue_coords );

    BCBMap.markers[16] = new google.maps.Marker({
      position: venue_coords,
      map: BCBMap.map,
      title: "Staffordshire University",
      icon: 'images/site/gmap-vertical-marker-black.png'
    });

    google.maps.event.addListener(BCBMap.markers[16], 'mouseover', function(e) {
      BCBMap.showInfo(e, ""+
            "", 0, "Staffordshire University");
    });

    google.maps.event.addListener(BCBMap.markers[16], 'mouseout', function() {
      BCBMap.noInfo();
    });

    google.maps.event.addListener(BCBMap.markers[16], 'click', function() {
      document.location.href = MIYOLib._conf.siteBaseURL+'/plan-your-visit/whats-on/?eventVenue=16';
    });

        
    // ------ Barewall ------
    venue_coords = new google.maps.LatLng(53.045798,-2.198434);
    BCBMap.bounds.extend( venue_coords );

    BCBMap.markers[17] = new google.maps.Marker({
      position: venue_coords,
      map: BCBMap.map,
      title: "Barewall",
      icon: 'images/site/gmap-vertical-marker-black.png'
    });

    google.maps.event.addListener(BCBMap.markers[17], 'mouseover', function(e) {
      BCBMap.showInfo(e, ""+
            "", 0, "Barewall");
    });

    google.maps.event.addListener(BCBMap.markers[17], 'mouseout', function() {
      BCBMap.noInfo();
    });

    google.maps.event.addListener(BCBMap.markers[17], 'click', function() {
      document.location.href = MIYOLib._conf.siteBaseURL+'/plan-your-visit/whats-on/?eventVenue=17';
    });

      
  

  BCBMap.map.fitBounds( BCBMap.bounds );
  // BCBMap.map.setCenter( BCBMap.bounds.getCenter( ) );

}
