// gmap logic...

// search vars from location or a link...

function QueryString(link) {
 // this.link, this.values;

 this.getnames = function() {
  var a = [];
  for (var name in this.values) a.push(name);
  return a;
 };
 this.get = function(name) {
  return this.values.hasOwnProperty(name) ? this.values[name] : null;
 };
 this.set = function(name, value, store) { // setting store on location changes page!
  if (value === null && this.values.hasOwnProperty(name)) delete this.values[name];
  this.values[name] = value; // overwrite
  if (store) this._store();
 };
 this.unset = function(store) {
  this.values = {};
  if (store) this._store();
 };
 this.toString = function() {
  var s = '';
  var sep = this.link == location ? '&' : '&amp;';
  for (var name in this.values) {
   s += sep + encodeURIComponent(name) + '=' + encodeURIComponent(this.values[name]);
  }
  return '?' + s.substring(sep.length);
 };
 this._store = function() { // changing location exits page!
  this.link.search = this.toString();
 };
 this._init = function(link) {
  this.link = link ? link : window.location;
  this.values = {};
  var search = this.link.search;
  if (search.charAt(0) == '?') search = search.substring(1);
  if (!search) return null;
  var names_values = search.split(new RegExp('&amp;|&')); //alert(names_values)
  for (var i = 0, n = names_values.length; i < n; i++) {
   var nv =  names_values[i].split('=');
   if (nv.length == 2)
    this.values[decodeURIComponent(nv[0])] = decodeURIComponent(nv[1]);
  }
 };
 this._init(link);
} // QueryString usage: var q = new QueryString(); ...

// cookie handling...

function Cookie() {
 // this.cookies;
 this.getnames = function() {
  var a = [];
  for (var name in this.cookies) a.push(name);
  return a;
 };
 this.get = function(name) {
  return this.cookies.hasOwnProperty(name) ? this.cookies[name].value : null;
 };
 this.set = function(name, value, days, domain, path, secure) {
  if (this.cookies.hasOwnProperty(name)) this.cookies[name].value = value;
  else this.cookies[name] = { value:value };
  var s = encodeURIComponent(name) + '=' + encodeURIComponent(value);
  if (days || days == 0) { this.cookies[name].days   = days;   s += '; max-age=' + days * 24 * 60 * 60; }
  if (domain)            { this.cookies[name].domain = domain; s += '; domain=' + domain; }
  if (path)              { this.cookies[name].path   = path;   s += '; path=' + path; }
  if (secure)            { this.cookies[name].secure = true;   s += '; secure'; }
  document.cookie = s;
 };
 this.unset = function(name) {
  if (this.get(name) === null) return;
  this.set(name, '', 0);
  delete this.cookies[name];
 };
 this._init = function() {
  this.cookies = {};
  var cookie = document.cookie;
  if (!cookie) return;
  var cookies = cookie.split('; ');
  for (var i = 0, n = cookies.length; i < n; i++) {
   var nv = cookies[i].split('=');
   if (nv.length != 2) continue;
   this.cookies[decodeURIComponent(nv[0])] = { value:decodeURIComponent(nv[1]) };
  }
 };
 this._init();
} // Cookie object usage: var c = new Cookie(); c.set(name, value); c.get(name);


// util...

function register(handler, event, object, use_capture, ignore_old_browsers) { // FIXME opera loop
 if (arguments.length < 5) ignore_old_browsers = true;
 if (arguments.length < 4) use_capture         = true;
 if (arguments.length < 3) object              = window;
 if (arguments.length < 2) event               = 'load';
 else event = event.substring(event.indexOf('on') ? 0 : 2);
 window.addEventListener ? // dom 2
  window.addEventListener(event, handler, use_capture) :
  window.attachEvent ?     // ie
   window.attachEvent('on' + event, handler) :
   window['on' + event] = ignore_old_browsers ? // dom 0
    null :
    handler;
} // usage: register(init_fn [, 'load' [, window [, true [, true ]]]]);

// start...

var map = undefined, query = undefined, cookie = undefined, mk = null; // global
var markers = {}, balloons = {};

query  = new QueryString();
cookie = new Cookie();

function unload() {
 var pt = map.getCenter();
 cookie.set('lt', pt.lat());
 cookie.set('lg', pt.lng());
 cookie.set('zf', map.getZoom());
 if (mk) cookie.set('mk', mk);
 else  cookie.unset('mk');

 //alert(['unload', document.cookie])

 GUnload();
}

function load() {

 var pc = query.get('pc')
 if (pc) {
  var a = document.getElementById('multimaps');
  a.href = 'http://www.multimap.com/map/browse.cgi?pc=' + encodeURIComponent(pc);
 }

 if (GBrowserIsCompatible()) {
  map = new GMap2(document.getElementById('map'));

  var lg = -1.450000;
  var lt = 53.420000;
  var zf = 10;

  map.setCenter(new GLatLng(lt, lg), zf);
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
  map.addControl(new GScaleControl());
  map.addControl(new GOverviewMapControl());
  map.enableDoubleClickZoom();

markers['chris_halstead'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'Chris Halstead' });
balloons['chris_halstead'] = function() { markers['chris_halstead'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="chris_halstead.htm" title="Click to see details of Chris Halstead"><img src="thumbs/halstead__chris.jpg" alt="Chris Halstead" /></a><p><a href="chris_halstead.htm" title="Click to see details of Chris Halstead">Chris Halstead</a></p><p>Bows for the string instrument family, hand crafted using tr...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'chris_halstead'; };
GEvent.addListener(markers['chris_halstead'], 'click', balloons['chris_halstead']);
map.addOverlay(markers['chris_halstead']);

markers['jonathan_taylor'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'Jonathan Taylor' });
balloons['jonathan_taylor'] = function() { markers['jonathan_taylor'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jonathan_taylor.htm" title="Click to see details of Jonathan Taylor"><img src="thumbs/taylor__jonathan.jpg" alt="Jonathan Taylor" /></a><p><a href="jonathan_taylor.htm" title="Click to see details of Jonathan Taylor">Jonathan Taylor</a></p><p>Photograph: Hinged silver neckpiece with pendulum locket. De...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jonathan_taylor'; };
GEvent.addListener(markers['jonathan_taylor'], 'click', balloons['jonathan_taylor']);
map.addOverlay(markers['jonathan_taylor']);

markers['annette_petch'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'Annette Petch' });
balloons['annette_petch'] = function() { markers['annette_petch'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="annette_petch.htm" title="Click to see details of Annette Petch"><img src="thumbs/petch__annette.jpg" alt="Annette Petch" /></a><p><a href="annette_petch.htm" title="Click to see details of Annette Petch">Annette Petch</a></p><p>I make silver and gold jewellery, based on natural forms. I ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'annette_petch'; };
GEvent.addListener(markers['annette_petch'], 'click', balloons['annette_petch']);
map.addOverlay(markers['annette_petch']);

markers['richard_priestley'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'Richard Priestley' });
balloons['richard_priestley'] = function() { markers['richard_priestley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="richard_priestley.htm" title="Click to see details of Richard Priestley"><img src="thumbs/priestley__richard.jpg" alt="Richard Priestley" /></a><p><a href="richard_priestley.htm" title="Click to see details of Richard Priestley">Richard Priestley</a></p><p>Contemporary silver jewellery inlaid with semi precious ston...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'richard_priestley'; };
GEvent.addListener(markers['richard_priestley'], 'click', balloons['richard_priestley']);
map.addOverlay(markers['richard_priestley']);

markers['david_lloyd'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'David Lloyd' });
balloons['david_lloyd'] = function() { markers['david_lloyd'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="david_lloyd.htm" title="Click to see details of David Lloyd"><img src="thumbs/lloyd__david.jpg" alt="David Lloyd" /></a><p><a href="david_lloyd.htm" title="Click to see details of David Lloyd">David Lloyd</a></p><p>Furniture, jewellery benches, workbenches and small wooden b...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'david_lloyd'; };
GEvent.addListener(markers['david_lloyd'], 'click', balloons['david_lloyd']);
map.addOverlay(markers['david_lloyd']);

markers['finbarr_lucas'] = new GMarker(new GLatLng(53.375278, -1.468681), { title:'Finbarr Lucas' });
balloons['finbarr_lucas'] = function() { markers['finbarr_lucas'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="finbarr_lucas.htm" title="Click to see details of Finbarr Lucas"><img src="thumbs/lucas__finbarr.jpg" alt="Finbarr Lucas" /></a><p><a href="finbarr_lucas.htm" title="Click to see details of Finbarr Lucas">Finbarr Lucas</a></p><p>Finkfurniture creates extraordinary furniture and sculpture....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'finbarr_lucas'; };
GEvent.addListener(markers['finbarr_lucas'], 'click', balloons['finbarr_lucas']);
map.addOverlay(markers['finbarr_lucas']);

markers['lyn_hodnett'] = new GMarker(new GLatLng(53.383067, -1.469547), { title:'Lyn Hodnett' });
balloons['lyn_hodnett'] = function() { markers['lyn_hodnett'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lyn_hodnett.htm" title="Click to see details of Lyn Hodnett"><img src="thumbs/hodnett__lyn.jpg" alt="Lyn Hodnett" /></a><p><a href="lyn_hodnett.htm" title="Click to see details of Lyn Hodnett">Lyn Hodnett</a></p><p>Atmospheric paintings of strong angelic winged women, inspir...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lyn_hodnett'; };
GEvent.addListener(markers['lyn_hodnett'], 'click', balloons['lyn_hodnett']);
map.addOverlay(markers['lyn_hodnett']);

markers['anne_marie_culhane_grow_sheffield'] = new GMarker(new GLatLng(53.376762, -1.466889), { title:'Anne-Marie Culhane: Grow Sheffield' });
balloons['anne_marie_culhane_grow_sheffield'] = function() { markers['anne_marie_culhane_grow_sheffield'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anne_marie_culhane_grow_sheffield.htm" title="Click to see details of Anne-Marie Culhane: Grow Sheffield"><img src="thumbs/culhane_-_grow_sheffield__anne-marie.jpg" alt="Anne-Marie Culhane: Grow Sheffield" /></a><p><a href="anne_marie_culhane_grow_sheffield.htm" title="Click to see details of Anne-Marie Culhane: Grow Sheffield">Anne-Marie Culhane: Grow Sheffield</a></p><p>Artist, performer and community activist working in response...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anne_marie_culhane_grow_sheffield'; };
GEvent.addListener(markers['anne_marie_culhane_grow_sheffield'], 'click', balloons['anne_marie_culhane_grow_sheffield']);
map.addOverlay(markers['anne_marie_culhane_grow_sheffield']);

markers['cynthia_harrison'] = new GMarker(new GLatLng(53.378922, -1.471616), { title:'Cynthia Harrison' });
balloons['cynthia_harrison'] = function() { markers['cynthia_harrison'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="cynthia_harrison.htm" title="Click to see details of Cynthia Harrison"><img src="thumbs/harrison__cynthia.jpg" alt="Cynthia Harrison" /></a><p><a href="cynthia_harrison.htm" title="Click to see details of Cynthia Harrison">Cynthia Harrison</a></p><p>Cynthia uses painting, drawing and printmaking to encourage ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'cynthia_harrison'; };
GEvent.addListener(markers['cynthia_harrison'], 'click', balloons['cynthia_harrison']);
map.addOverlay(markers['cynthia_harrison']);

markers['stephen_todd'] = new GMarker(new GLatLng(53.375710, -1.470780), { title:'Stephen Todd' });
balloons['stephen_todd'] = function() { markers['stephen_todd'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="stephen_todd.htm" title="Click to see details of Stephen Todd"><img src="thumbs/todd__stephen.jpg" alt="Stephen Todd" /></a><p><a href="stephen_todd.htm" title="Click to see details of Stephen Todd">Stephen Todd</a></p><p>Painting, drawing, printmaking and photographic-based images...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'stephen_todd'; };
GEvent.addListener(markers['stephen_todd'], 'click', balloons['stephen_todd']);
map.addOverlay(markers['stephen_todd']);

markers['clare_hawley'] = new GMarker(new GLatLng(53.378922, -1.471616), { title:'Clare Hawley' });
balloons['clare_hawley'] = function() { markers['clare_hawley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="clare_hawley.htm" title="Click to see details of Clare Hawley"><img src="thumbs/hawley__clare.jpg" alt="Clare Hawley" /></a><p><a href="clare_hawley.htm" title="Click to see details of Clare Hawley">Clare Hawley</a></p><p>Hand fabricated silver and gemstone jewellery, inspired by n...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'clare_hawley'; };
GEvent.addListener(markers['clare_hawley'], 'click', balloons['clare_hawley']);
map.addOverlay(markers['clare_hawley']);

markers['wendy_carlton'] = new GMarker(new GLatLng(53.384127, -1.469519), { title:'Wendy Carlton' });
balloons['wendy_carlton'] = function() { markers['wendy_carlton'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="wendy_carlton.htm" title="Click to see details of Wendy Carlton"><img src="thumbs/carlton__wendy.jpg" alt="Wendy Carlton" /></a><p><a href="wendy_carlton.htm" title="Click to see details of Wendy Carlton">Wendy Carlton</a></p><p>Known for bold dramatic floral paintings in acrylics. Now de...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'wendy_carlton'; };
GEvent.addListener(markers['wendy_carlton'], 'click', balloons['wendy_carlton']);
map.addOverlay(markers['wendy_carlton']);

markers['philip_cole'] = new GMarker(new GLatLng(53.375664, -1.452547), { title:'Philip Cole' });
balloons['philip_cole'] = function() { markers['philip_cole'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="philip_cole.htm" title="Click to see details of Philip Cole"><img src="thumbs/cole__philip.jpg" alt="Philip Cole" /></a><p><a href="philip_cole.htm" title="Click to see details of Philip Cole">Philip Cole</a></p><p>Paintings, drawings and bronzes. From life or from archive o...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'philip_cole'; };
GEvent.addListener(markers['philip_cole'], 'click', balloons['philip_cole']);
map.addOverlay(markers['philip_cole']);

markers['georgia_haseldine'] = new GMarker(new GLatLng(53.375664, -1.452547), { title:'Georgia Haseldine' });
balloons['georgia_haseldine'] = function() { markers['georgia_haseldine'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="georgia_haseldine.htm" title="Click to see details of Georgia Haseldine"><img src="thumbs/haseldine__georgia.jpg" alt="Georgia Haseldine" /></a><p><a href="georgia_haseldine.htm" title="Click to see details of Georgia Haseldine">Georgia Haseldine</a></p><p>Vivid figurative paintings, drawings and photographs which a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'georgia_haseldine'; };
GEvent.addListener(markers['georgia_haseldine'], 'click', balloons['georgia_haseldine']);
map.addOverlay(markers['georgia_haseldine']);

markers['gabby_hanlon'] = new GMarker(new GLatLng(53.375664, -1.452547), { title:'Gabby Hanlon' });
balloons['gabby_hanlon'] = function() { markers['gabby_hanlon'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="gabby_hanlon.htm" title="Click to see details of Gabby Hanlon"><img src="thumbs/hanlon__gabby.jpg" alt="Gabby Hanlon" /></a><p><a href="gabby_hanlon.htm" title="Click to see details of Gabby Hanlon">Gabby Hanlon</a></p><p>These drawings and paintings from interiors and landscapes e...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'gabby_hanlon'; };
GEvent.addListener(markers['gabby_hanlon'], 'click', balloons['gabby_hanlon']);
map.addOverlay(markers['gabby_hanlon']);

markers['karen_graham'] = new GMarker(new GLatLng(53.375201, -1.455590), { title:'Karen Graham' });
balloons['karen_graham'] = function() { markers['karen_graham'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="karen_graham.htm" title="Click to see details of Karen Graham"><img src="thumbs/graham__karen.jpg" alt="Karen Graham" /></a><p><a href="karen_graham.htm" title="Click to see details of Karen Graham">Karen Graham</a></p><p>I combine the ancient skills of spinning, weaving and dyeing...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'karen_graham'; };
GEvent.addListener(markers['karen_graham'], 'click', balloons['karen_graham']);
map.addOverlay(markers['karen_graham']);

markers['sarah_williams'] = new GMarker(new GLatLng(53.375201, -1.455590), { title:'Sarah Williams' });
balloons['sarah_williams'] = function() { markers['sarah_williams'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="sarah_williams.htm" title="Click to see details of Sarah Williams"><img src="thumbs/williams__sarah.jpg" alt="Sarah Williams" /></a><p><a href="sarah_williams.htm" title="Click to see details of Sarah Williams">Sarah Williams</a></p><p>Rugs, wall-hangings, cushions, scarves, cloth in sumptuous c...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sarah_williams'; };
GEvent.addListener(markers['sarah_williams'], 'click', balloons['sarah_williams']);
map.addOverlay(markers['sarah_williams']);

markers['charlie_downes'] = new GMarker(new GLatLng(53.396896, -1.462532), { title:'Charlie Downes' });
balloons['charlie_downes'] = function() { markers['charlie_downes'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="charlie_downes.htm" title="Click to see details of Charlie Downes"><img src="thumbs/downes__charlie.jpg" alt="Charlie Downes" /></a><p><a href="charlie_downes.htm" title="Click to see details of Charlie Downes">Charlie Downes</a></p><p>Small landscape paintings, also mezzotint prints of floral o...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'charlie_downes'; };
GEvent.addListener(markers['charlie_downes'], 'click', balloons['charlie_downes']);
map.addOverlay(markers['charlie_downes']);

markers['hendrika_stephens'] = new GMarker(new GLatLng(53.400202, -1.466010), { title:'Hendrika Stephens' });
balloons['hendrika_stephens'] = function() { markers['hendrika_stephens'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hendrika_stephens.htm" title="Click to see details of Hendrika Stephens"><img src="thumbs/stephens__hendrika.jpg" alt="Hendrika Stephens" /></a><p><a href="hendrika_stephens.htm" title="Click to see details of Hendrika Stephens">Hendrika Stephens</a></p><p>Ceramics, sculpture, jewellery. Sculptural and functional st...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hendrika_stephens'; };
GEvent.addListener(markers['hendrika_stephens'], 'click', balloons['hendrika_stephens']);
map.addOverlay(markers['hendrika_stephens']);

markers['anne_smithies'] = new GMarker(new GLatLng(53.400202, -1.466010), { title:'Anne Smithies' });
balloons['anne_smithies'] = function() { markers['anne_smithies'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anne_smithies.htm" title="Click to see details of Anne Smithies"><img src="thumbs/smithies__anne.jpg" alt="Anne Smithies" /></a><p><a href="anne_smithies.htm" title="Click to see details of Anne Smithies">Anne Smithies</a></p><p>Working in textiles, papers and recycled materials to produc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anne_smithies'; };
GEvent.addListener(markers['anne_smithies'], 'click', balloons['anne_smithies']);
map.addOverlay(markers['anne_smithies']);

markers['noel_lockley'] = new GMarker(new GLatLng(53.410669, -1.472980), { title:'Noel Lockley' });
balloons['noel_lockley'] = function() { markers['noel_lockley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="noel_lockley.htm" title="Click to see details of Noel Lockley"><img src="thumbs/lockley__noel.jpg" alt="Noel Lockley" /></a><p><a href="noel_lockley.htm" title="Click to see details of Noel Lockley">Noel Lockley</a></p><p>My work is formed from real stories of present times using a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'noel_lockley'; };
GEvent.addListener(markers['noel_lockley'], 'click', balloons['noel_lockley']);
map.addOverlay(markers['noel_lockley']);

markers['bryan_munsey'] = new GMarker(new GLatLng(53.410669, -1.472980), { title:'Bryan Munsey' });
balloons['bryan_munsey'] = function() { markers['bryan_munsey'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="bryan_munsey.htm" title="Click to see details of Bryan Munsey"><img src="thumbs/munsey__bryan.jpg" alt="Bryan Munsey" /></a><p><a href="bryan_munsey.htm" title="Click to see details of Bryan Munsey">Bryan Munsey</a></p><p>Items including bowls, vases and platters turned from South ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'bryan_munsey'; };
GEvent.addListener(markers['bryan_munsey'], 'click', balloons['bryan_munsey']);
map.addOverlay(markers['bryan_munsey']);

markers['alton_daley'] = new GMarker(new GLatLng(53.410669, -1.472980), { title:'Alton Daley' });
balloons['alton_daley'] = function() { markers['alton_daley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="alton_daley.htm" title="Click to see details of Alton Daley"><img src="thumbs/daley__alton.jpg" alt="Alton Daley" /></a><p><a href="alton_daley.htm" title="Click to see details of Alton Daley">Alton Daley</a></p><p>Abstract/landscape painter....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'alton_daley'; };
GEvent.addListener(markers['alton_daley'], 'click', balloons['alton_daley']);
map.addOverlay(markers['alton_daley']);

markers['homa_dadr'] = new GMarker(new GLatLng(53.410669, -1.472980), { title:'Homa Dadr' });
balloons['homa_dadr'] = function() { markers['homa_dadr'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="homa_dadr.htm" title="Click to see details of Homa Dadr"><img src="thumbs/dadr__homa.jpg" alt="Homa Dadr" /></a><p><a href="homa_dadr.htm" title="Click to see details of Homa Dadr">Homa Dadr</a></p><p>Portrait/landscape painter....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'homa_dadr'; };
GEvent.addListener(markers['homa_dadr'], 'click', balloons['homa_dadr']);
map.addOverlay(markers['homa_dadr']);

markers['mick_ibbotson'] = new GMarker(new GLatLng(53.410669, -1.472980), { title:'Mick Ibbotson' });
balloons['mick_ibbotson'] = function() { markers['mick_ibbotson'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="mick_ibbotson.htm" title="Click to see details of Mick Ibbotson"><img src="thumbs/ibbotson__mick.jpg" alt="Mick Ibbotson" /></a><p><a href="mick_ibbotson.htm" title="Click to see details of Mick Ibbotson">Mick Ibbotson</a></p><p>Mixed range of media including glass, paint and tile....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'mick_ibbotson'; };
GEvent.addListener(markers['mick_ibbotson'], 'click', balloons['mick_ibbotson']);
map.addOverlay(markers['mick_ibbotson']);

markers['elton_clough'] = new GMarker(new GLatLng(53.390045, -1.480332), { title:'Elton Clough' });
balloons['elton_clough'] = function() { markers['elton_clough'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="elton_clough.htm" title="Click to see details of Elton Clough"><img src="thumbs/clough__elton.jpg" alt="Elton Clough" /></a><p><a href="elton_clough.htm" title="Click to see details of Elton Clough">Elton Clough</a></p><p>Bring your unwanted photographs and you/we will transform th...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'elton_clough'; };
GEvent.addListener(markers['elton_clough'], 'click', balloons['elton_clough']);
map.addOverlay(markers['elton_clough']);

markers['jane_dawson_and_gemma_thornton'] = new GMarker(new GLatLng(53.390045, -1.480332), { title:'Jane Dawson and Gemma Thornton' });
balloons['jane_dawson_and_gemma_thornton'] = function() { markers['jane_dawson_and_gemma_thornton'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jane_dawson_and_gemma_thornton.htm" title="Click to see details of Jane Dawson and Gemma Thornton"><img src="thumbs/thornton___jane_dawson_and_gemma.jpg" alt="Jane Dawson and Gemma Thornton" /></a><p><a href="jane_dawson_and_gemma_thornton.htm" title="Click to see details of Jane Dawson and Gemma Thornton">Jane Dawson and Gemma Thornton</a></p><p>Live Art between 11am-1.30pm and 2.30pm-5pm. SANDBAGS AND DI...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jane_dawson_and_gemma_thornton'; };
GEvent.addListener(markers['jane_dawson_and_gemma_thornton'], 'click', balloons['jane_dawson_and_gemma_thornton']);
map.addOverlay(markers['jane_dawson_and_gemma_thornton']);

markers['claire_lee'] = new GMarker(new GLatLng(53.395510, -1.510087), { title:'Claire Lee' });
balloons['claire_lee'] = function() { markers['claire_lee'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="claire_lee.htm" title="Click to see details of Claire Lee"><img src="thumbs/lee__claire.jpg" alt="Claire Lee" /></a><p><a href="claire_lee.htm" title="Click to see details of Claire Lee">Claire Lee</a></p><p>Embodying frivolity and gravity, transparency and opacity, s...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'claire_lee'; };
GEvent.addListener(markers['claire_lee'], 'click', balloons['claire_lee']);
map.addOverlay(markers['claire_lee']);

markers['debbie_michaels'] = new GMarker(new GLatLng(53.395510, -1.510087), { title:'Debbie Michaels' });
balloons['debbie_michaels'] = function() { markers['debbie_michaels'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="debbie_michaels.htm" title="Click to see details of Debbie Michaels"><img src="thumbs/michaels__debbie.jpg" alt="Debbie Michaels" /></a><p><a href="debbie_michaels.htm" title="Click to see details of Debbie Michaels">Debbie Michaels</a></p><p>Exploring transitional states and aspects of the emotional l...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'debbie_michaels'; };
GEvent.addListener(markers['debbie_michaels'], 'click', balloons['debbie_michaels']);
map.addOverlay(markers['debbie_michaels']);

markers['jon_michaels'] = new GMarker(new GLatLng(53.395510, -1.510087), { title:'Jon Michaels' });
balloons['jon_michaels'] = function() { markers['jon_michaels'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jon_michaels.htm" title="Click to see details of Jon Michaels"><img src="thumbs/michaels__jon.jpg" alt="Jon Michaels" /></a><p><a href="jon_michaels.htm" title="Click to see details of Jon Michaels">Jon Michaels</a></p><p>Seeing things differently - abstract and figurative images t...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jon_michaels'; };
GEvent.addListener(markers['jon_michaels'], 'click', balloons['jon_michaels']);
map.addOverlay(markers['jon_michaels']);

markers['kate_wells'] = new GMarker(new GLatLng(53.389247, -1.549779), { title:'Kate Wells' });
balloons['kate_wells'] = function() { markers['kate_wells'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="kate_wells.htm" title="Click to see details of Kate Wells"><img src="thumbs/wells__kate.jpg" alt="Kate Wells" /></a><p><a href="kate_wells.htm" title="Click to see details of Kate Wells">Kate Wells</a></p><p>Machine and hand embroidery, drawing, painting and illustrat...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'kate_wells'; };
GEvent.addListener(markers['kate_wells'], 'click', balloons['kate_wells']);
map.addOverlay(markers['kate_wells']);

markers['paul_schatzberger'] = new GMarker(new GLatLng(53.391084, -1.498544), { title:'Paul Schatzberger' });
balloons['paul_schatzberger'] = function() { markers['paul_schatzberger'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="paul_schatzberger.htm" title="Click to see details of Paul Schatzberger"><img src="thumbs/schatzberger__paul.jpg" alt="Paul Schatzberger" /></a><p><a href="paul_schatzberger.htm" title="Click to see details of Paul Schatzberger">Paul Schatzberger</a></p><p>Limited edition photographs including social documentary ima...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'paul_schatzberger'; };
GEvent.addListener(markers['paul_schatzberger'], 'click', balloons['paul_schatzberger']);
map.addOverlay(markers['paul_schatzberger']);

markers['katherine_rhodes'] = new GMarker(new GLatLng(53.391084, -1.498544), { title:'Katherine Rhodes' });
balloons['katherine_rhodes'] = function() { markers['katherine_rhodes'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="katherine_rhodes.htm" title="Click to see details of Katherine Rhodes"><img src="thumbs/rhodes__katherine.jpg" alt="Katherine Rhodes" /></a><p><a href="katherine_rhodes.htm" title="Click to see details of Katherine Rhodes">Katherine Rhodes</a></p><p>Paintings of landscape, flowers, and the figure. I enjoy col...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'katherine_rhodes'; };
GEvent.addListener(markers['katherine_rhodes'], 'click', balloons['katherine_rhodes']);
map.addOverlay(markers['katherine_rhodes']);

markers['nancy_alford'] = new GMarker(new GLatLng(53.390085, -1.499205), { title:'Nancy Alford' });
balloons['nancy_alford'] = function() { markers['nancy_alford'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="nancy_alford.htm" title="Click to see details of Nancy Alford"><img src="thumbs/alford__nancy.jpg" alt="Nancy Alford" /></a><p><a href="nancy_alford.htm" title="Click to see details of Nancy Alford">Nancy Alford</a></p><p>Photographic work ranging from informal children\'s portraits...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'nancy_alford'; };
GEvent.addListener(markers['nancy_alford'], 'click', balloons['nancy_alford']);
map.addOverlay(markers['nancy_alford']);

markers['kristan_baggaley'] = new GMarker(new GLatLng(53.357434, -1.491051), { title:'Kristan Baggaley' });
balloons['kristan_baggaley'] = function() { markers['kristan_baggaley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="kristan_baggaley.htm" title="Click to see details of Kristan Baggaley"><img src="thumbs/baggaley__kristan.jpg" alt="Kristan Baggaley" /></a><p><a href="kristan_baggaley.htm" title="Click to see details of Kristan Baggaley">Kristan Baggaley</a></p><p>New venue, new work, new beginnings. Oil on canvas. Landscap...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'kristan_baggaley'; };
GEvent.addListener(markers['kristan_baggaley'], 'click', balloons['kristan_baggaley']);
map.addOverlay(markers['kristan_baggaley']);

markers['lucy_coyne'] = new GMarker(new GLatLng(53.357434, -1.491051), { title:'Lucy Coyne' });
balloons['lucy_coyne'] = function() { markers['lucy_coyne'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lucy_coyne.htm" title="Click to see details of Lucy Coyne"><img src="thumbs/coyne__lucy.jpg" alt="Lucy Coyne" /></a><p><a href="lucy_coyne.htm" title="Click to see details of Lucy Coyne">Lucy Coyne</a></p><p>Environment to excite the senses. Familiar materials present...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lucy_coyne'; };
GEvent.addListener(markers['lucy_coyne'], 'click', balloons['lucy_coyne']);
map.addOverlay(markers['lucy_coyne']);

markers['jill_lauriston'] = new GMarker(new GLatLng(53.357318, -1.493486), { title:'Jill Lauriston' });
balloons['jill_lauriston'] = function() { markers['jill_lauriston'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jill_lauriston.htm" title="Click to see details of Jill Lauriston"><img src="thumbs/lauriston__jill.jpg" alt="Jill Lauriston" /></a><p><a href="jill_lauriston.htm" title="Click to see details of Jill Lauriston">Jill Lauriston</a></p><p>Large selection of watercolour paintings, many of France and...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jill_lauriston'; };
GEvent.addListener(markers['jill_lauriston'], 'click', balloons['jill_lauriston']);
map.addOverlay(markers['jill_lauriston']);

markers['kate_sully'] = new GMarker(new GLatLng(53.353406, -1.488725), { title:'Kate Sully' });
balloons['kate_sully'] = function() { markers['kate_sully'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="kate_sully.htm" title="Click to see details of Kate Sully"><img src="thumbs/sully__kate.jpg" alt="Kate Sully" /></a><p><a href="kate_sully.htm" title="Click to see details of Kate Sully">Kate Sully</a></p><p>New collection of work inspired by artefacts from Doncaster ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'kate_sully'; };
GEvent.addListener(markers['kate_sully'], 'click', balloons['kate_sully']);
map.addOverlay(markers['kate_sully']);

markers['melanie_pearson'] = new GMarker(new GLatLng(53.365125, -1.479748), { title:'Melanie Pearson' });
balloons['melanie_pearson'] = function() { markers['melanie_pearson'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="melanie_pearson.htm" title="Click to see details of Melanie Pearson"><img src="thumbs/pearson__melanie.jpg" alt="Melanie Pearson" /></a><p><a href="melanie_pearson.htm" title="Click to see details of Melanie Pearson">Melanie Pearson</a></p><p>Mixed media, fantasy, storytelling and memory... visitors ca...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'melanie_pearson'; };
GEvent.addListener(markers['melanie_pearson'], 'click', balloons['melanie_pearson']);
map.addOverlay(markers['melanie_pearson']);

markers['susannah_gent'] = new GMarker(new GLatLng(53.361124, -1.483764), { title:'Susannah Gent' });
balloons['susannah_gent'] = function() { markers['susannah_gent'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="susannah_gent.htm" title="Click to see details of Susannah Gent"><img src="thumbs/gent__susannah.jpg" alt="Susannah Gent" /></a><p><a href="susannah_gent.htm" title="Click to see details of Susannah Gent">Susannah Gent</a></p><p>Artist\'s house with taxidermy installation, sculpture, video...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'susannah_gent'; };
GEvent.addListener(markers['susannah_gent'], 'click', balloons['susannah_gent']);
map.addOverlay(markers['susannah_gent']);

markers['paul_ashwell'] = new GMarker(new GLatLng(53.362080, -1.488681), { title:'Paul Ashwell' });
balloons['paul_ashwell'] = function() { markers['paul_ashwell'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="paul_ashwell.htm" title="Click to see details of Paul Ashwell"><img src="thumbs/ashwell__paul.jpg" alt="Paul Ashwell" /></a><p><a href="paul_ashwell.htm" title="Click to see details of Paul Ashwell">Paul Ashwell</a></p><p>Abstract mixed media paintings using oils, acrylics, tissue,...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'paul_ashwell'; };
GEvent.addListener(markers['paul_ashwell'], 'click', balloons['paul_ashwell']);
map.addOverlay(markers['paul_ashwell']);

markers['tim_rose'] = new GMarker(new GLatLng(53.352003, -1.488711), { title:'Tim Rose' });
balloons['tim_rose'] = function() { markers['tim_rose'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="tim_rose.htm" title="Click to see details of Tim Rose"><img src="thumbs/rose__tim.jpg" alt="Tim Rose" /></a><p><a href="tim_rose.htm" title="Click to see details of Tim Rose">Tim Rose</a></p><p>Watercolours and oils of architecture, ranging from city cra...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'tim_rose'; };
GEvent.addListener(markers['tim_rose'], 'click', balloons['tim_rose']);
map.addOverlay(markers['tim_rose']);

markers['peter_painter_printmaker'] = new GMarker(new GLatLng(53.353939, -1.464905), { title:'Peter Painter Printmaker' });
balloons['peter_painter_printmaker'] = function() { markers['peter_painter_printmaker'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="peter_painter_printmaker.htm" title="Click to see details of Peter Painter Printmaker"><img src="thumbs/peter_painter_printmaker.jpg" alt="Peter Painter Printmaker" /></a><p><a href="peter_painter_printmaker.htm" title="Click to see details of Peter Painter Printmaker">Peter Painter Printmaker</a></p><p>Prints produced at this workshop over the past year showing ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'peter_painter_printmaker'; };
GEvent.addListener(markers['peter_painter_printmaker'], 'click', balloons['peter_painter_printmaker']);
map.addOverlay(markers['peter_painter_printmaker']);

markers['anne_turk'] = new GMarker(new GLatLng(53.362572, -1.548392), { title:'Anne Turk' });
balloons['anne_turk'] = function() { markers['anne_turk'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anne_turk.htm" title="Click to see details of Anne Turk"><img src="thumbs/turk__anne.jpg" alt="Anne Turk" /></a><p><a href="anne_turk.htm" title="Click to see details of Anne Turk">Anne Turk</a></p><p>Detailed representational pastel work inspired by love of th...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anne_turk'; };
GEvent.addListener(markers['anne_turk'], 'click', balloons['anne_turk']);
map.addOverlay(markers['anne_turk']);

markers['karin_hessenberg'] = new GMarker(new GLatLng(53.371507, -1.492461), { title:'Karin Hessenberg' });
balloons['karin_hessenberg'] = function() { markers['karin_hessenberg'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="karin_hessenberg.htm" title="Click to see details of Karin Hessenberg"><img src="thumbs/hessenberg__karin.jpg" alt="Karin Hessenberg" /></a><p><a href="karin_hessenberg.htm" title="Click to see details of Karin Hessenberg">Karin Hessenberg</a></p><p>Hand-built sculptures and ornaments for gardens and plants. ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'karin_hessenberg'; };
GEvent.addListener(markers['karin_hessenberg'], 'click', balloons['karin_hessenberg']);
map.addOverlay(markers['karin_hessenberg']);

markers['martin_decent'] = new GMarker(new GLatLng(53.368339, -1.544845), { title:'Martin Decent' });
balloons['martin_decent'] = function() { markers['martin_decent'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="martin_decent.htm" title="Click to see details of Martin Decent"><img src="thumbs/decent__martin.jpg" alt="Martin Decent" /></a><p><a href="martin_decent.htm" title="Click to see details of Martin Decent">Martin Decent</a></p><p>Contemporary colourful paintings, interpreting the landscape...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'martin_decent'; };
GEvent.addListener(markers['martin_decent'], 'click', balloons['martin_decent']);
map.addOverlay(markers['martin_decent']);

markers['philippa_french'] = new GMarker(new GLatLng(53.383752, -1.495112), { title:'Philippa French' });
balloons['philippa_french'] = function() { markers['philippa_french'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="philippa_french.htm" title="Click to see details of Philippa French"><img src="thumbs/french__philippa.jpg" alt="Philippa French" /></a><p><a href="philippa_french.htm" title="Click to see details of Philippa French">Philippa French</a></p><p>Paintings and multimedia work inspired by the Middle Ages an...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'philippa_french'; };
GEvent.addListener(markers['philippa_french'], 'click', balloons['philippa_french']);
map.addOverlay(markers['philippa_french']);

markers['simon_clements'] = new GMarker(new GLatLng(53.375021, -1.505166), { title:'Simon Clements' });
balloons['simon_clements'] = function() { markers['simon_clements'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="simon_clements.htm" title="Click to see details of Simon Clements"><img src="thumbs/clements__simon.jpg" alt="Simon Clements" /></a><p><a href="simon_clements.htm" title="Click to see details of Simon Clements">Simon Clements</a></p><p>Printmaking, etching and painting. Cityscapes and landscapes...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'simon_clements'; };
GEvent.addListener(markers['simon_clements'], 'click', balloons['simon_clements']);
map.addOverlay(markers['simon_clements']);

markers['robert_twigg'] = new GMarker(new GLatLng(53.363105, -1.495116), { title:'Robert Twigg' });
balloons['robert_twigg'] = function() { markers['robert_twigg'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="robert_twigg.htm" title="Click to see details of Robert Twigg"><img src="thumbs/twigg__robert.jpg" alt="Robert Twigg" /></a><p><a href="robert_twigg.htm" title="Click to see details of Robert Twigg">Robert Twigg</a></p><p>Rural and industrial photography....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'robert_twigg'; };
GEvent.addListener(markers['robert_twigg'], 'click', balloons['robert_twigg']);
map.addOverlay(markers['robert_twigg']);

markers['maggie_rayner'] = new GMarker(new GLatLng(53.363105, -1.495116), { title:'Maggie Rayner' });
balloons['maggie_rayner'] = function() { markers['maggie_rayner'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="maggie_rayner.htm" title="Click to see details of Maggie Rayner"><img src="thumbs/raynor__maggie.jpg" alt="Maggie Rayner" /></a><p><a href="maggie_rayner.htm" title="Click to see details of Maggie Rayner">Maggie Rayner</a></p><p>Watercolour equine studies....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'maggie_rayner'; };
GEvent.addListener(markers['maggie_rayner'], 'click', balloons['maggie_rayner']);
map.addOverlay(markers['maggie_rayner']);

markers['les_gillott'] = new GMarker(new GLatLng(53.363105, -1.495116), { title:'Les Gillott' });
balloons['les_gillott'] = function() { markers['les_gillott'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="les_gillott.htm" title="Click to see details of Les Gillott"><img src="thumbs/gillott__les.jpg" alt="Les Gillott" /></a><p><a href="les_gillott.htm" title="Click to see details of Les Gillott">Les Gillott</a></p><p>Oil landscapes....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'les_gillott'; };
GEvent.addListener(markers['les_gillott'], 'click', balloons['les_gillott']);
map.addOverlay(markers['les_gillott']);

markers['avril_lyons'] = new GMarker(new GLatLng(53.368349, -1.485495), { title:'Avril Lyons' });
balloons['avril_lyons'] = function() { markers['avril_lyons'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="avril_lyons.htm" title="Click to see details of Avril Lyons"><img src="thumbs/lyons__avril.jpg" alt="Avril Lyons" /></a><p><a href="avril_lyons.htm" title="Click to see details of Avril Lyons">Avril Lyons</a></p><p>Semi-abstract land and seascapes. Inspired by the light and ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'avril_lyons'; };
GEvent.addListener(markers['avril_lyons'], 'click', balloons['avril_lyons']);
map.addOverlay(markers['avril_lyons']);

markers['jane_horton'] = new GMarker(new GLatLng(53.368349, -1.485495), { title:'Jane Horton' });
balloons['jane_horton'] = function() { markers['jane_horton'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jane_horton.htm" title="Click to see details of Jane Horton"><img src="thumbs/horton__jane.jpg" alt="Jane Horton" /></a><p><a href="jane_horton.htm" title="Click to see details of Jane Horton">Jane Horton</a></p><p>Landscapes, figurative and semiabstract. Mixed media, mono p...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jane_horton'; };
GEvent.addListener(markers['jane_horton'], 'click', balloons['jane_horton']);
map.addOverlay(markers['jane_horton']);

markers['rosalie_wyatt'] = new GMarker(new GLatLng(53.368349, -1.485495), { title:'Rosalie Wyatt' });
balloons['rosalie_wyatt'] = function() { markers['rosalie_wyatt'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="rosalie_wyatt.htm" title="Click to see details of Rosalie Wyatt"><img src="thumbs/wyatt__rosalie.jpg" alt="Rosalie Wyatt" /></a><p><a href="rosalie_wyatt.htm" title="Click to see details of Rosalie Wyatt">Rosalie Wyatt</a></p><p>Shapes repeated in rock fall and sea inlets draw me. Revisit...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'rosalie_wyatt'; };
GEvent.addListener(markers['rosalie_wyatt'], 'click', balloons['rosalie_wyatt']);
map.addOverlay(markers['rosalie_wyatt']);

markers['norman_cherry'] = new GMarker(new GLatLng(53.353864, -1.510158), { title:'Norman Cherry' });
balloons['norman_cherry'] = function() { markers['norman_cherry'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="norman_cherry.htm" title="Click to see details of Norman Cherry"><img src="thumbs/cherry__norman.jpg" alt="Norman Cherry" /></a><p><a href="norman_cherry.htm" title="Click to see details of Norman Cherry">Norman Cherry</a></p><p>Wheel thrown, glazed domestic pottery. Hand coiled wood fire...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'norman_cherry'; };
GEvent.addListener(markers['norman_cherry'], 'click', balloons['norman_cherry']);
map.addOverlay(markers['norman_cherry']);

markers['jean_cherry'] = new GMarker(new GLatLng(53.353864, -1.510158), { title:'Jean Cherry' });
balloons['jean_cherry'] = function() { markers['jean_cherry'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jean_cherry.htm" title="Click to see details of Jean Cherry"><img src="thumbs/cherry__jean.jpg" alt="Jean Cherry" /></a><p><a href="jean_cherry.htm" title="Click to see details of Jean Cherry">Jean Cherry</a></p><p>PRINTMAKING PLUS: screen prints, mono prints, collagraphs, d...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jean_cherry'; };
GEvent.addListener(markers['jean_cherry'], 'click', balloons['jean_cherry']);
map.addOverlay(markers['jean_cherry']);

markers['dr_roland_miller'] = new GMarker(new GLatLng(53.367035, -1.510804), { title:'Dr. Roland Miller' });
balloons['dr_roland_miller'] = function() { markers['dr_roland_miller'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="dr_roland_miller.htm" title="Click to see details of Dr. Roland Miller"><img src="thumbs/miller___dr_roland.jpg" alt="Dr. Roland Miller" /></a><p><a href="dr_roland_miller.htm" title="Click to see details of Dr. Roland Miller">Dr. Roland Miller</a></p><p>&quot;Quote - unquote&quot; Exploring the meaning and application of t...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'dr_roland_miller'; };
GEvent.addListener(markers['dr_roland_miller'], 'click', balloons['dr_roland_miller']);
map.addOverlay(markers['dr_roland_miller']);

markers['shirley_cameron'] = new GMarker(new GLatLng(53.367035, -1.510804), { title:'Shirley Cameron' });
balloons['shirley_cameron'] = function() { markers['shirley_cameron'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="shirley_cameron.htm" title="Click to see details of Shirley Cameron"><img src="thumbs/cameron__shirley.jpg" alt="Shirley Cameron" /></a><p><a href="shirley_cameron.htm" title="Click to see details of Shirley Cameron">Shirley Cameron</a></p><p>An Ascent - Installation in my house. Starting from the base...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'shirley_cameron'; };
GEvent.addListener(markers['shirley_cameron'], 'click', balloons['shirley_cameron']);
map.addOverlay(markers['shirley_cameron']);

markers['fenella_noble_design'] = new GMarker(new GLatLng(53.354505, -1.517228), { title:'Fenella Noble Design' });
balloons['fenella_noble_design'] = function() { markers['fenella_noble_design'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="fenella_noble_design.htm" title="Click to see details of Fenella Noble Design"><img src="thumbs/noble_design___fenella.jpg" alt="Fenella Noble Design" /></a><p><a href="fenella_noble_design.htm" title="Click to see details of Fenella Noble Design">Fenella Noble Design</a></p><p>I interpret in ceramic clients\' photographs of special peopl...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'fenella_noble_design'; };
GEvent.addListener(markers['fenella_noble_design'], 'click', balloons['fenella_noble_design']);
map.addOverlay(markers['fenella_noble_design']);

markers['julie_h_cole'] = new GMarker(new GLatLng(53.354817, -1.505821), { title:'Julie H. Cole' });
balloons['julie_h_cole'] = function() { markers['julie_h_cole'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="julie_h_cole.htm" title="Click to see details of Julie H. Cole"><img src="thumbs/cole__julie_h..jpg" alt="Julie H. Cole" /></a><p><a href="julie_h_cole.htm" title="Click to see details of Julie H. Cole">Julie H. Cole</a></p><p>A modern slant on the themes of the Pre-Raphaelites. Painted...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'julie_h_cole'; };
GEvent.addListener(markers['julie_h_cole'], 'click', balloons['julie_h_cole']);
map.addOverlay(markers['julie_h_cole']);

markers['lesley_warren'] = new GMarker(new GLatLng(53.367740, -1.527177), { title:'Lesley Warren' });
balloons['lesley_warren'] = function() { markers['lesley_warren'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lesley_warren.htm" title="Click to see details of Lesley Warren"><img src="thumbs/warren__lesley.jpg" alt="Lesley Warren" /></a><p><a href="lesley_warren.htm" title="Click to see details of Lesley Warren">Lesley Warren</a></p><p>Drawings and prints, including woodcuts and collagraphs, dea...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lesley_warren'; };
GEvent.addListener(markers['lesley_warren'], 'click', balloons['lesley_warren']);
map.addOverlay(markers['lesley_warren']);

markers['samantha_groom'] = new GMarker(new GLatLng(53.367740, -1.527177), { title:'Samantha Groom' });
balloons['samantha_groom'] = function() { markers['samantha_groom'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="samantha_groom.htm" title="Click to see details of Samantha Groom"><img src="thumbs/groom__samantha.jpg" alt="Samantha Groom" /></a><p><a href="samantha_groom.htm" title="Click to see details of Samantha Groom">Samantha Groom</a></p><p>Glimpsed moments during the daily grind mixed with familiar ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'samantha_groom'; };
GEvent.addListener(markers['samantha_groom'], 'click', balloons['samantha_groom']);
map.addOverlay(markers['samantha_groom']);

markers['lena_papapanagiotou'] = new GMarker(new GLatLng(53.367740, -1.527177), { title:'Lena Papapanagiotou' });
balloons['lena_papapanagiotou'] = function() { markers['lena_papapanagiotou'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lena_papapanagiotou.htm" title="Click to see details of Lena Papapanagiotou"><img src="thumbs/papapanagiotou__lena.jpg" alt="Lena Papapanagiotou" /></a><p><a href="lena_papapanagiotou.htm" title="Click to see details of Lena Papapanagiotou">Lena Papapanagiotou</a></p><p>New paintings of rich acrylic colours dealing with ideas of ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lena_papapanagiotou'; };
GEvent.addListener(markers['lena_papapanagiotou'], 'click', balloons['lena_papapanagiotou']);
map.addOverlay(markers['lena_papapanagiotou']);

markers['mark_h_wilson'] = new GMarker(new GLatLng(53.362511, -1.514387), { title:'Mark H. Wilson' });
balloons['mark_h_wilson'] = function() { markers['mark_h_wilson'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="mark_h_wilson.htm" title="Click to see details of Mark H. Wilson"><img src="thumbs/wilson__mark_h..jpg" alt="Mark H. Wilson" /></a><p><a href="mark_h_wilson.htm" title="Click to see details of Mark H. Wilson">Mark H. Wilson</a></p><p>Contemporary landscape and woodland paintings. Inspired by c...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'mark_h_wilson'; };
GEvent.addListener(markers['mark_h_wilson'], 'click', balloons['mark_h_wilson']);
map.addOverlay(markers['mark_h_wilson']);

markers['pamela_chapman_elliott'] = new GMarker(new GLatLng(53.362285, -1.513954), { title:'Pamela Chapman Elliott' });
balloons['pamela_chapman_elliott'] = function() { markers['pamela_chapman_elliott'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="pamela_chapman_elliott.htm" title="Click to see details of Pamela Chapman Elliott"><img src="thumbs/chapman_elliott__pamela.jpg" alt="Pamela Chapman Elliott" /></a><p><a href="pamela_chapman_elliott.htm" title="Click to see details of Pamela Chapman Elliott">Pamela Chapman Elliott</a></p><p>Watercolours and pen and ink drawings, originals and mounted...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'pamela_chapman_elliott'; };
GEvent.addListener(markers['pamela_chapman_elliott'], 'click', balloons['pamela_chapman_elliott']);
map.addOverlay(markers['pamela_chapman_elliott']);

markers['sharon_gill'] = new GMarker(new GLatLng(53.370396, -1.482750), { title:'Sharon Gill' });
balloons['sharon_gill'] = function() { markers['sharon_gill'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="sharon_gill.htm" title="Click to see details of Sharon Gill"><img src="thumbs/gill__sharon.jpg" alt="Sharon Gill" /></a><p><a href="sharon_gill.htm" title="Click to see details of Sharon Gill">Sharon Gill</a></p><p>Visions of the Future: climate change; Mediterranean Yorkshi...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sharon_gill'; };
GEvent.addListener(markers['sharon_gill'], 'click', balloons['sharon_gill']);
map.addOverlay(markers['sharon_gill']);

markers['sue_lowday'] = new GMarker(new GLatLng(53.364646, -1.515505), { title:'Sue Lowday' });
balloons['sue_lowday'] = function() { markers['sue_lowday'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="sue_lowday.htm" title="Click to see details of Sue Lowday"><img src="thumbs/lowday__sue.jpg" alt="Sue Lowday" /></a><p><a href="sue_lowday.htm" title="Click to see details of Sue Lowday">Sue Lowday</a></p><p>Belts, bags, organisers and purses individually designed and...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sue_lowday'; };
GEvent.addListener(markers['sue_lowday'], 'click', balloons['sue_lowday']);
map.addOverlay(markers['sue_lowday']);

markers['erica_just'] = new GMarker(new GLatLng(53.364646, -1.515505), { title:'Erica Just' });
balloons['erica_just'] = function() { markers['erica_just'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="erica_just.htm" title="Click to see details of Erica Just"><img src="thumbs/just__erica.jpg" alt="Erica Just" /></a><p><a href="erica_just.htm" title="Click to see details of Erica Just">Erica Just</a></p><p>Erica Just will be showing her original watercolours inspire...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'erica_just'; };
GEvent.addListener(markers['erica_just'], 'click', balloons['erica_just']);
map.addOverlay(markers['erica_just']);

markers['jane_cox'] = new GMarker(new GLatLng(53.364646, -1.515505), { title:'Jane Cox' });
balloons['jane_cox'] = function() { markers['jane_cox'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jane_cox.htm" title="Click to see details of Jane Cox"><img src="thumbs/cox__jane.jpg" alt="Jane Cox" /></a><p><a href="jane_cox.htm" title="Click to see details of Jane Cox">Jane Cox</a></p><p>Decorative and functional ceramics and graphic works. Bold, ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jane_cox'; };
GEvent.addListener(markers['jane_cox'], 'click', balloons['jane_cox']);
map.addOverlay(markers['jane_cox']);

markers['sue_lancaster'] = new GMarker(new GLatLng(53.367740, -1.527177), { title:'Sue Lancaster' });
balloons['sue_lancaster'] = function() { markers['sue_lancaster'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="sue_lancaster.htm" title="Click to see details of Sue Lancaster"><img src="thumbs/lancaster__sue.jpg" alt="Sue Lancaster" /></a><p><a href="sue_lancaster.htm" title="Click to see details of Sue Lancaster">Sue Lancaster</a></p><p>Machine embroidery, felt making and stage costumes. Original...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sue_lancaster'; };
GEvent.addListener(markers['sue_lancaster'], 'click', balloons['sue_lancaster']);
map.addOverlay(markers['sue_lancaster']);

markers['toby_hazel'] = new GMarker(new GLatLng(53.353569, -1.510373), { title:'Toby Hazel' });
balloons['toby_hazel'] = function() { markers['toby_hazel'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="toby_hazel.htm" title="Click to see details of Toby Hazel"><img src="thumbs/hazel__toby.jpg" alt="Toby Hazel" /></a><p><a href="toby_hazel.htm" title="Click to see details of Toby Hazel">Toby Hazel</a></p><p>Colourful acrylic paintings in a variety of styles, includin...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'toby_hazel'; };
GEvent.addListener(markers['toby_hazel'], 'click', balloons['toby_hazel']);
map.addOverlay(markers['toby_hazel']);

markers['steve_elliott'] = new GMarker(new GLatLng(53.312598, -1.535381), { title:'Steve Elliott' });
balloons['steve_elliott'] = function() { markers['steve_elliott'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="steve_elliott.htm" title="Click to see details of Steve Elliott"><img src="thumbs/elliott__steve.jpg" alt="Steve Elliott" /></a><p><a href="steve_elliott.htm" title="Click to see details of Steve Elliott">Steve Elliott</a></p><p>My paintings are about light, space and atmosphere in the De...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'steve_elliott'; };
GEvent.addListener(markers['steve_elliott'], 'click', balloons['steve_elliott']);
map.addOverlay(markers['steve_elliott']);

markers['martin_field'] = new GMarker(new GLatLng(53.312598, -1.535381), { title:'Martin Field' });
balloons['martin_field'] = function() { markers['martin_field'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="martin_field.htm" title="Click to see details of Martin Field"><img src="thumbs/field__martin.jpg" alt="Martin Field" /></a><p><a href="martin_field.htm" title="Click to see details of Martin Field">Martin Field</a></p><p>My aim is to capture mood and atmosphere in landscape photog...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'martin_field'; };
GEvent.addListener(markers['martin_field'], 'click', balloons['martin_field']);
map.addOverlay(markers['martin_field']);

markers['hazel_lale'] = new GMarker(new GLatLng(53.316006, -1.524222), { title:'Hazel Lale' });
balloons['hazel_lale'] = function() { markers['hazel_lale'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hazel_lale.htm" title="Click to see details of Hazel Lale"><img src="thumbs/lale__hazel.jpg" alt="Hazel Lale" /></a><p><a href="hazel_lale.htm" title="Click to see details of Hazel Lale">Hazel Lale</a></p><p>Paintings in watercolour, mixed media and acrylic are about ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hazel_lale'; };
GEvent.addListener(markers['hazel_lale'], 'click', balloons['hazel_lale']);
map.addOverlay(markers['hazel_lale']);

markers['a_rosemary_watson'] = new GMarker(new GLatLng(53.320785, -1.527952), { title:'A. Rosemary Watson' });
balloons['a_rosemary_watson'] = function() { markers['a_rosemary_watson'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="a_rosemary_watson.htm" title="Click to see details of A. Rosemary Watson"><img src="thumbs/watson__a._rosemary.jpg" alt="A. Rosemary Watson" /></a><p><a href="a_rosemary_watson.htm" title="Click to see details of A. Rosemary Watson">A. Rosemary Watson</a></p><p>Memory: Place Time Experience Dream Drawings, paintings, pri...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'a_rosemary_watson'; };
GEvent.addListener(markers['a_rosemary_watson'], 'click', balloons['a_rosemary_watson']);
map.addOverlay(markers['a_rosemary_watson']);

markers['hanne_westergaard'] = new GMarker(new GLatLng(53.320785, -1.527952), { title:'Hanne Westergaard' });
balloons['hanne_westergaard'] = function() { markers['hanne_westergaard'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hanne_westergaard.htm" title="Click to see details of Hanne Westergaard"><img src="thumbs/westergaard__hanne.jpg" alt="Hanne Westergaard" /></a><p><a href="hanne_westergaard.htm" title="Click to see details of Hanne Westergaard">Hanne Westergaard</a></p><p>Decorative ceramics for the home and garden, made in soda/wo...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hanne_westergaard'; };
GEvent.addListener(markers['hanne_westergaard'], 'click', balloons['hanne_westergaard']);
map.addOverlay(markers['hanne_westergaard']);

markers['john_thatcher'] = new GMarker(new GLatLng(53.320785, -1.527952), { title:'John Thatcher' });
balloons['john_thatcher'] = function() { markers['john_thatcher'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="john_thatcher.htm" title="Click to see details of John Thatcher"><img src="thumbs/thatcher__john.jpg" alt="John Thatcher" /></a><p><a href="john_thatcher.htm" title="Click to see details of John Thatcher">John Thatcher</a></p><p>Fine furniture made to commission in temperate hardwoods....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'john_thatcher'; };
GEvent.addListener(markers['john_thatcher'], 'click', balloons['john_thatcher']);
map.addOverlay(markers['john_thatcher']);

markers['maureen_greenland'] = new GMarker(new GLatLng(53.292471, -1.517207), { title:'Maureen Greenland' });
balloons['maureen_greenland'] = function() { markers['maureen_greenland'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="maureen_greenland.htm" title="Click to see details of Maureen Greenland"><img src="thumbs/greenland__maureen.jpg" alt="Maureen Greenland" /></a><p><a href="maureen_greenland.htm" title="Click to see details of Maureen Greenland">Maureen Greenland</a></p><p>Colourful hand-thrown pottery: bowls, jugs, vases and mugs, ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'maureen_greenland'; };
GEvent.addListener(markers['maureen_greenland'], 'click', balloons['maureen_greenland']);
map.addOverlay(markers['maureen_greenland']);

markers['tracy_white'] = new GMarker(new GLatLng(53.302480, -1.344675), { title:'Tracy White' });
balloons['tracy_white'] = function() { markers['tracy_white'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="tracy_white.htm" title="Click to see details of Tracy White"><img src="thumbs/white__tracy.jpg" alt="Tracy White" /></a><p><a href="tracy_white.htm" title="Click to see details of Tracy White">Tracy White</a></p><p>Fused glass designer of jewellery and glassware, also produc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'tracy_white'; };
GEvent.addListener(markers['tracy_white'], 'click', balloons['tracy_white']);
map.addOverlay(markers['tracy_white']);

markers['katie_krasnowski'] = new GMarker(new GLatLng(53.321041, -1.259780), { title:'Katie Krasnowski' });
balloons['katie_krasnowski'] = function() { markers['katie_krasnowski'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="katie_krasnowski.htm" title="Click to see details of Katie Krasnowski"><img src="thumbs/krasnowski__katie.jpg" alt="Katie Krasnowski" /></a><p><a href="katie_krasnowski.htm" title="Click to see details of Katie Krasnowski">Katie Krasnowski</a></p><p>Fantasy, horror, contemporary portraits on canvas and board ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'katie_krasnowski'; };
GEvent.addListener(markers['katie_krasnowski'], 'click', balloons['katie_krasnowski']);
map.addOverlay(markers['katie_krasnowski']);

markers['andrew_lawton'] = new GMarker(new GLatLng(53.292136, -1.638339), { title:'Andrew Lawton' });
balloons['andrew_lawton'] = function() { markers['andrew_lawton'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="andrew_lawton.htm" title="Click to see details of Andrew Lawton"><img src="thumbs/lawton__andrew.jpg" alt="Andrew Lawton" /></a><p><a href="andrew_lawton.htm" title="Click to see details of Andrew Lawton">Andrew Lawton</a></p><p>Fine bespoke furniture for the home, office and public build...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'andrew_lawton'; };
GEvent.addListener(markers['andrew_lawton'], 'click', balloons['andrew_lawton']);
map.addOverlay(markers['andrew_lawton']);

markers['lyn_littlewood'] = new GMarker(new GLatLng(53.342344, -1.667999), { title:'Lyn Littlewood' });
balloons['lyn_littlewood'] = function() { markers['lyn_littlewood'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lyn_littlewood.htm" title="Click to see details of Lyn Littlewood"><img src="thumbs/littlewood__lyn.jpg" alt="Lyn Littlewood" /></a><p><a href="lyn_littlewood.htm" title="Click to see details of Lyn Littlewood">Lyn Littlewood</a></p><p>Loosely painted watercolour and pastel landscapes and flower...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lyn_littlewood'; };
GEvent.addListener(markers['lyn_littlewood'], 'click', balloons['lyn_littlewood']);
map.addOverlay(markers['lyn_littlewood']);

markers['ian_saville'] = new GMarker(new GLatLng(53.342344, -1.667999), { title:'Ian Saville' });
balloons['ian_saville'] = function() { markers['ian_saville'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ian_saville.htm" title="Click to see details of Ian Saville"><img src="thumbs/saville__ian.jpg" alt="Ian Saville" /></a><p><a href="ian_saville.htm" title="Click to see details of Ian Saville">Ian Saville</a></p><p>Award winning furniture designermaker. Contemporary bespoke ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ian_saville'; };
GEvent.addListener(markers['ian_saville'], 'click', balloons['ian_saville']);
map.addOverlay(markers['ian_saville']);

markers['jenny_mather'] = new GMarker(new GLatLng(53.346486, -1.690739), { title:'Jenny Mather' });
balloons['jenny_mather'] = function() { markers['jenny_mather'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jenny_mather.htm" title="Click to see details of Jenny Mather"><img src="thumbs/mather__jenny.jpg" alt="Jenny Mather" /></a><p><a href="jenny_mather.htm" title="Click to see details of Jenny Mather">Jenny Mather</a></p><p>Rocky shores. Oils and watercolours painted on location in E...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jenny_mather'; };
GEvent.addListener(markers['jenny_mather'], 'click', balloons['jenny_mather']);
map.addOverlay(markers['jenny_mather']);

markers['brenda_ford'] = new GMarker(new GLatLng(53.346486, -1.690739), { title:'Brenda Ford' });
balloons['brenda_ford'] = function() { markers['brenda_ford'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="brenda_ford.htm" title="Click to see details of Brenda Ford"><img src="thumbs/ford__brenda.jpg" alt="Brenda Ford" /></a><p><a href="brenda_ford.htm" title="Click to see details of Brenda Ford">Brenda Ford</a></p><p>Working with vitreous enamels for over forty years, Brenda c...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'brenda_ford'; };
GEvent.addListener(markers['brenda_ford'], 'click', balloons['brenda_ford']);
map.addOverlay(markers['brenda_ford']);

markers['les_bell'] = new GMarker(new GLatLng(53.474833, -1.483862), { title:'Les Bell' });
balloons['les_bell'] = function() { markers['les_bell'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="les_bell.htm" title="Click to see details of Les Bell"><img src="thumbs/bell__les.jpg" alt="Les Bell" /></a><p><a href="les_bell.htm" title="Click to see details of Les Bell">Les Bell</a></p><p>Figurative, abstract and still life paintings on a variety o...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'les_bell'; };
GEvent.addListener(markers['les_bell'], 'click', balloons['les_bell']);
map.addOverlay(markers['les_bell']);

markers['joanne_jenkins'] = new GMarker(new GLatLng(53.474833, -1.483862), { title:'Joanne Jenkins' });
balloons['joanne_jenkins'] = function() { markers['joanne_jenkins'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="joanne_jenkins.htm" title="Click to see details of Joanne Jenkins"><img src="thumbs/jenkins__joanne.jpg" alt="Joanne Jenkins" /></a><p><a href="joanne_jenkins.htm" title="Click to see details of Joanne Jenkins">Joanne Jenkins</a></p><p>My work explores the endeavour to capture the organic patter...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'joanne_jenkins'; };
GEvent.addListener(markers['joanne_jenkins'], 'click', balloons['joanne_jenkins']);
map.addOverlay(markers['joanne_jenkins']);

markers['anthony_carroll'] = new GMarker(new GLatLng(53.474833, -1.483862), { title:'Anthony Carroll' });
balloons['anthony_carroll'] = function() { markers['anthony_carroll'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anthony_carroll.htm" title="Click to see details of Anthony Carroll"><img src="thumbs/carroll__anthony.jpg" alt="Anthony Carroll" /></a><p><a href="anthony_carroll.htm" title="Click to see details of Anthony Carroll">Anthony Carroll</a></p><p>An eclectic mix of subjects, styles and genre in various med...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anthony_carroll'; };
GEvent.addListener(markers['anthony_carroll'], 'click', balloons['anthony_carroll']);
map.addOverlay(markers['anthony_carroll']);

markers['gorima_basu'] = new GMarker(new GLatLng(53.459191, -1.461083), { title:'Gorima Basu' });
balloons['gorima_basu'] = function() { markers['gorima_basu'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="gorima_basu.htm" title="Click to see details of Gorima Basu"><img src="thumbs/basu__gorima.jpg" alt="Gorima Basu" /></a><p><a href="gorima_basu.htm" title="Click to see details of Gorima Basu">Gorima Basu</a></p><p>I try to evoke the vibrant luminosity that India has to offe...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'gorima_basu'; };
GEvent.addListener(markers['gorima_basu'], 'click', balloons['gorima_basu']);
map.addOverlay(markers['gorima_basu']);

markers['ann_parkin'] = new GMarker(new GLatLng(53.503054, -1.561692), { title:'Ann Parkin' });
balloons['ann_parkin'] = function() { markers['ann_parkin'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ann_parkin.htm" title="Click to see details of Ann Parkin"><img src="thumbs/parkin__ann.jpg" alt="Ann Parkin" /></a><p><a href="ann_parkin.htm" title="Click to see details of Ann Parkin">Ann Parkin</a></p><p>Wide ranging work from intimately scaled landscapes in stitc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ann_parkin'; };
GEvent.addListener(markers['ann_parkin'], 'click', balloons['ann_parkin']);
map.addOverlay(markers['ann_parkin']);

markers['caroline_bell'] = new GMarker(new GLatLng(53.503054, -1.561692), { title:'Caroline Bell' });
balloons['caroline_bell'] = function() { markers['caroline_bell'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="caroline_bell.htm" title="Click to see details of Caroline Bell"><img src="thumbs/bell__caroline.jpg" alt="Caroline Bell" /></a><p><a href="caroline_bell.htm" title="Click to see details of Caroline Bell">Caroline Bell</a></p><p>Drawings and paintings interpretive landscapes as metaphor f...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'caroline_bell'; };
GEvent.addListener(markers['caroline_bell'], 'click', balloons['caroline_bell']);
map.addOverlay(markers['caroline_bell']);

markers['bob_campbell'] = new GMarker(new GLatLng(53.273968, -1.258884), { title:'Bob Campbell' });
balloons['bob_campbell'] = function() { markers['bob_campbell'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="bob_campbell.htm" title="Click to see details of Bob Campbell"><img src="thumbs/campbell__bob.jpg" alt="Bob Campbell" /></a><p><a href="bob_campbell.htm" title="Click to see details of Bob Campbell">Bob Campbell</a></p><p>Surreal scrapmetal furniture: fantastical functional sculptu...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'bob_campbell'; };
GEvent.addListener(markers['bob_campbell'], 'click', balloons['bob_campbell']);
map.addOverlay(markers['bob_campbell']);

markers['jeff_perks'] = new GMarker(new GLatLng(53.253290, -1.743842), { title:'Jeff Perks' });
balloons['jeff_perks'] = function() { markers['jeff_perks'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jeff_perks.htm" title="Click to see details of Jeff Perks"><img src="thumbs/perks__jeff.jpg" alt="Jeff Perks" /></a><p><a href="jeff_perks.htm" title="Click to see details of Jeff Perks">Jeff Perks</a></p><p>Sculpture in reclaimed wood or stone. The shape of the mater...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jeff_perks'; };
GEvent.addListener(markers['jeff_perks'], 'click', balloons['jeff_perks']);
map.addOverlay(markers['jeff_perks']);

markers['austin_pinkney'] = new GMarker(new GLatLng(53.428187, -1.353791), { title:'Austin Pinkney' });
balloons['austin_pinkney'] = function() { markers['austin_pinkney'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="austin_pinkney.htm" title="Click to see details of Austin Pinkney"><img src="thumbs/pinkney__austin.jpg" alt="Austin Pinkney" /></a><p><a href="austin_pinkney.htm" title="Click to see details of Austin Pinkney">Austin Pinkney</a></p><p>Large and \'intimately\' scaled abstract expressionist acrylic...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'austin_pinkney'; };
GEvent.addListener(markers['austin_pinkney'], 'click', balloons['austin_pinkney']);
map.addOverlay(markers['austin_pinkney']);

markers['hilary_simms'] = new GMarker(new GLatLng(53.558179, -1.486637), { title:'Hilary Simms' });
balloons['hilary_simms'] = function() { markers['hilary_simms'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hilary_simms.htm" title="Click to see details of Hilary Simms"><img src="thumbs/simms__hilary.jpg" alt="Hilary Simms" /></a><p><a href="hilary_simms.htm" title="Click to see details of Hilary Simms">Hilary Simms</a></p><p>Volcanic sculpture, vessels, tiles, handmade by coiling, pin...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hilary_simms'; };
GEvent.addListener(markers['hilary_simms'], 'click', balloons['hilary_simms']);
map.addOverlay(markers['hilary_simms']);

markers['gemma_nemer'] = new GMarker(new GLatLng(53.495145, -1.420666), { title:'Gemma Nemer' });
balloons['gemma_nemer'] = function() { markers['gemma_nemer'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="gemma_nemer.htm" title="Click to see details of Gemma Nemer"><img src="thumbs/nemer__gemma.jpg" alt="Gemma Nemer" /></a><p><a href="gemma_nemer.htm" title="Click to see details of Gemma Nemer">Gemma Nemer</a></p><p>Scraps of memory sewn together. Colour, nostalgia, texture a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'gemma_nemer'; };
GEvent.addListener(markers['gemma_nemer'], 'click', balloons['gemma_nemer']);
map.addOverlay(markers['gemma_nemer']);

markers['roger_head'] = new GMarker(new GLatLng(53.567943, -1.504827), { title:'Roger Head' });
balloons['roger_head'] = function() { markers['roger_head'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="roger_head.htm" title="Click to see details of Roger Head"><img src="thumbs/head__roger.jpg" alt="Roger Head" /></a><p><a href="roger_head.htm" title="Click to see details of Roger Head">Roger Head</a></p><p>Landscape and figurative paintings in all media, currently s...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'roger_head'; };
GEvent.addListener(markers['roger_head'], 'click', balloons['roger_head']);
map.addOverlay(markers['roger_head']);

markers['art_buddies'] = new GMarker(new GLatLng(53.567943, -1.504827), { title:'Art Buddies' });
balloons['art_buddies'] = function() { markers['art_buddies'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="art_buddies.htm" title="Click to see details of Art Buddies"><img src="thumbs/art_buddies.jpg" alt="Art Buddies" /></a><p><a href="art_buddies.htm" title="Click to see details of Art Buddies">Art Buddies</a></p><p>Eight artists offering an artistic feast; still life, nature...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'art_buddies'; };
GEvent.addListener(markers['art_buddies'], 'click', balloons['art_buddies']);
map.addOverlay(markers['art_buddies']);

markers['pam_sandals'] = new GMarker(new GLatLng(53.534528, -1.560567), { title:'Pam Sandals' });
balloons['pam_sandals'] = function() { markers['pam_sandals'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="pam_sandals.htm" title="Click to see details of Pam Sandals"><img src="thumbs/sandals__pam.jpg" alt="Pam Sandals" /></a><p><a href="pam_sandals.htm" title="Click to see details of Pam Sandals">Pam Sandals</a></p><p>Inspired by natural forms, using handmade felt and embroider...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'pam_sandals'; };
GEvent.addListener(markers['pam_sandals'], 'click', balloons['pam_sandals']);
map.addOverlay(markers['pam_sandals']);

markers['patrick_smith'] = new GMarker(new GLatLng(53.534528, -1.560567), { title:'Patrick Smith' });
balloons['patrick_smith'] = function() { markers['patrick_smith'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="patrick_smith.htm" title="Click to see details of Patrick Smith"><img src="thumbs/smith__patrick.jpg" alt="Patrick Smith" /></a><p><a href="patrick_smith.htm" title="Click to see details of Patrick Smith">Patrick Smith</a></p><p>Hand-thrown stoneware and porcelain both large and small, pe...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'patrick_smith'; };
GEvent.addListener(markers['patrick_smith'], 'click', balloons['patrick_smith']);
map.addOverlay(markers['patrick_smith']);

markers['fellow_escaper'] = new GMarker(new GLatLng(53.525562, -1.126112), { title:'Fellow Escaper' });
balloons['fellow_escaper'] = function() { markers['fellow_escaper'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="fellow_escaper.htm" title="Click to see details of Fellow Escaper"><img src="thumbs/fellow_escaper.jpg" alt="Fellow Escaper" /></a><p><a href="fellow_escaper.htm" title="Click to see details of Fellow Escaper">Fellow Escaper</a></p><p>ACT 1: \'How I Live\' visionary installation. ACT 2 : \'Audio S...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'fellow_escaper'; };
GEvent.addListener(markers['fellow_escaper'], 'click', balloons['fellow_escaper']);
map.addOverlay(markers['fellow_escaper']);

markers['graham_duckenfield'] = new GMarker(new GLatLng(53.514497, -1.142190), { title:'Graham Duckenfield' });
balloons['graham_duckenfield'] = function() { markers['graham_duckenfield'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="graham_duckenfield.htm" title="Click to see details of Graham Duckenfield"><img src="thumbs/duckenfield__graham.jpg" alt="Graham Duckenfield" /></a><p><a href="graham_duckenfield.htm" title="Click to see details of Graham Duckenfield">Graham Duckenfield</a></p><p>Specialises in watercolour landscapes, historical buildings ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'graham_duckenfield'; };
GEvent.addListener(markers['graham_duckenfield'], 'click', balloons['graham_duckenfield']);
map.addOverlay(markers['graham_duckenfield']);

markers['ray_beddow'] = new GMarker(new GLatLng(53.341918, -1.505775), { title:'Ray Beddow' });
balloons['ray_beddow'] = function() { markers['ray_beddow'].openInfoWindowHtml('<div class="balloon"><p><a href="ray_beddow.htm" title="Click to see details of Ray Beddow">Ray Beddow</a></p><p>(Not parcipating in this year\'s Open Up event) Works in oils...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ray_beddow'; };
GEvent.addListener(markers['ray_beddow'], 'click', balloons['ray_beddow']);
map.addOverlay(markers['ray_beddow']);

markers['adam_berry'] = new GMarker(new GLatLng(53.376762, -1.466889), { title:'Adam Berry' });
balloons['adam_berry'] = function() { markers['adam_berry'].openInfoWindowHtml('<div class="balloon"><p><a href="adam_berry.htm" title="Click to see details of Adam Berry">Adam Berry</a></p><p>(Not parcipating in this year\'s Open Up event) Painting in a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'adam_berry'; };
GEvent.addListener(markers['adam_berry'], 'click', balloons['adam_berry']);
map.addOverlay(markers['adam_berry']);

markers['sallyann_carlin'] = new GMarker(new GLatLng(53.375710, -1.470780), { title:'Sallyann Carlin' });
balloons['sallyann_carlin'] = function() { markers['sallyann_carlin'].openInfoWindowHtml('<div class="balloon"><p><a href="sallyann_carlin.htm" title="Click to see details of Sallyann Carlin">Sallyann Carlin</a></p><p>(Not parcipating in this year\'s Open Up event) Webcam/instal...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sallyann_carlin'; };
GEvent.addListener(markers['sallyann_carlin'], 'click', balloons['sallyann_carlin']);
map.addOverlay(markers['sallyann_carlin']);

markers['anna_childs'] = new GMarker(new GLatLng(53.376762, -1.466889), { title:'Anna Childs' });
balloons['anna_childs'] = function() { markers['anna_childs'].openInfoWindowHtml('<div class="balloon"><p><a href="anna_childs.htm" title="Click to see details of Anna Childs">Anna Childs</a></p><p>(Not parcipating in this year\'s Open Up event) Furniture, ca...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anna_childs'; };
GEvent.addListener(markers['anna_childs'], 'click', balloons['anna_childs']);
map.addOverlay(markers['anna_childs']);

markers['stephen_court'] = new GMarker(new GLatLng(53.567514, -1.504825), { title:'Stephen Court' });
balloons['stephen_court'] = function() { markers['stephen_court'].openInfoWindowHtml('<div class="balloon"><p><a href="stephen_court.htm" title="Click to see details of Stephen Court">Stephen Court</a></p><p>(Not parcipating in this year\'s Open Up event)...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'stephen_court'; };
GEvent.addListener(markers['stephen_court'], 'click', balloons['stephen_court']);
map.addOverlay(markers['stephen_court']);

markers['yuri_gabrilovich'] = new GMarker(new GLatLng(53.363597, -1.211000), { title:'Yuri Gabrilovich' });
balloons['yuri_gabrilovich'] = function() { markers['yuri_gabrilovich'].openInfoWindowHtml('<div class="balloon"><p><a href="yuri_gabrilovich.htm" title="Click to see details of Yuri Gabrilovich">Yuri Gabrilovich</a></p><p>(Not parcipating in this year\'s Open Up event) Versatile art...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'yuri_gabrilovich'; };
GEvent.addListener(markers['yuri_gabrilovich'], 'click', balloons['yuri_gabrilovich']);
map.addOverlay(markers['yuri_gabrilovich']);

markers['baz_gascoyne'] = new GMarker(new GLatLng(53.361255, -1.510585), { title:'Baz Gascoyne' });
balloons['baz_gascoyne'] = function() { markers['baz_gascoyne'].openInfoWindowHtml('<div class="balloon"><p><a href="baz_gascoyne.htm" title="Click to see details of Baz Gascoyne">Baz Gascoyne</a></p><p>(Not parcipating in this year\'s Open Up event) Bold and insp...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'baz_gascoyne'; };
GEvent.addListener(markers['baz_gascoyne'], 'click', balloons['baz_gascoyne']);
map.addOverlay(markers['baz_gascoyne']);

markers['elizabeth_lazenby'] = new GMarker(new GLatLng(53.567514, -1.504825), { title:'Elizabeth Lazenby' });
balloons['elizabeth_lazenby'] = function() { markers['elizabeth_lazenby'].openInfoWindowHtml('<div class="balloon"><p><a href="elizabeth_lazenby.htm" title="Click to see details of Elizabeth Lazenby">Elizabeth Lazenby</a></p><p>(Not parcipating in this year\'s Open Up event) Traditional a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'elizabeth_lazenby'; };
GEvent.addListener(markers['elizabeth_lazenby'], 'click', balloons['elizabeth_lazenby']);
map.addOverlay(markers['elizabeth_lazenby']);

markers['lesley_lister'] = new GMarker(new GLatLng(53.391084, -1.498544), { title:'Lesley Lister' });
balloons['lesley_lister'] = function() { markers['lesley_lister'].openInfoWindowHtml('<div class="balloon"><p><a href="lesley_lister.htm" title="Click to see details of Lesley Lister">Lesley Lister</a></p><p>(Not parcipating in this year\'s Open Up event) Mixed media, ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lesley_lister'; };
GEvent.addListener(markers['lesley_lister'], 'click', balloons['lesley_lister']);
map.addOverlay(markers['lesley_lister']);

markers['barbara_e_milne'] = new GMarker(new GLatLng(53.567514, -1.504825), { title:'Barbara E. Milne' });
balloons['barbara_e_milne'] = function() { markers['barbara_e_milne'].openInfoWindowHtml('<div class="balloon"><p><a href="barbara_e_milne.htm" title="Click to see details of Barbara E. Milne">Barbara E. Milne</a></p><p>(Not parcipating in this year\'s Open Up event) Painting in o...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'barbara_e_milne'; };
GEvent.addListener(markers['barbara_e_milne'], 'click', balloons['barbara_e_milne']);
map.addOverlay(markers['barbara_e_milne']);

markers['imogen_purslow'] = new GMarker(new GLatLng(53.391084, -1.498544), { title:'Imogen Purslow' });
balloons['imogen_purslow'] = function() { markers['imogen_purslow'].openInfoWindowHtml('<div class="balloon"><p><a href="imogen_purslow.htm" title="Click to see details of Imogen Purslow">Imogen Purslow</a></p><p>(Not parcipating in this year\'s Open Up event) Fused glass j...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'imogen_purslow'; };
GEvent.addListener(markers['imogen_purslow'], 'click', balloons['imogen_purslow']);
map.addOverlay(markers['imogen_purslow']);

markers['peter_stapleton'] = new GMarker(new GLatLng(53.567514, -1.504825), { title:'Peter Stapleton' });
balloons['peter_stapleton'] = function() { markers['peter_stapleton'].openInfoWindowHtml('<div class="balloon"><p><a href="peter_stapleton.htm" title="Click to see details of Peter Stapleton">Peter Stapleton</a></p><p>(Not parcipating in this year\'s Open Up event) Figurative an...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'peter_stapleton'; };
GEvent.addListener(markers['peter_stapleton'], 'click', balloons['peter_stapleton']);
map.addOverlay(markers['peter_stapleton']);

markers['dot_wheeler'] = new GMarker(new GLatLng(53.155724, -1.574689), { title:'Dot Wheeler' });
balloons['dot_wheeler'] = function() { markers['dot_wheeler'].openInfoWindowHtml('<div class="balloon"><p><a href="dot_wheeler.htm" title="Click to see details of Dot Wheeler">Dot Wheeler</a></p><p>(Not parcipating in this year\'s Open Up event) Contemporary ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'dot_wheeler'; };
GEvent.addListener(markers['dot_wheeler'], 'click', balloons['dot_wheeler']);
map.addOverlay(markers['dot_wheeler']);

markers['graham_clark'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Graham Clark' });
balloons['graham_clark'] = function() { markers['graham_clark'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="graham_clark.htm" title="Click to see details of Graham Clark"><img src="thumbs/clark__graham.jpg" alt="Graham Clark" /></a><p><a href="graham_clark.htm" title="Click to see details of Graham Clark">Graham Clark</a></p><p>Impressionistic and realistic styles in all media, very vers...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'graham_clark'; };
GEvent.addListener(markers['graham_clark'], 'click', balloons['graham_clark']);
map.addOverlay(markers['graham_clark']);

markers['susan_forbes'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Susan Forbes' });
balloons['susan_forbes'] = function() { markers['susan_forbes'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="susan_forbes.htm" title="Click to see details of Susan Forbes"><img src="thumbs/forbes__susan.jpg" alt="Susan Forbes" /></a><p><a href="susan_forbes.htm" title="Click to see details of Susan Forbes">Susan Forbes</a></p><p>Fine, fibre-paper to heavy hand rolled felt, using tradition...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'susan_forbes'; };
GEvent.addListener(markers['susan_forbes'], 'click', balloons['susan_forbes']);
map.addOverlay(markers['susan_forbes']);

markers['mike_green'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Mike Green' });
balloons['mike_green'] = function() { markers['mike_green'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="mike_green.htm" title="Click to see details of Mike Green"><img src="thumbs/green__mike.jpg" alt="Mike Green" /></a><p><a href="mike_green.htm" title="Click to see details of Mike Green">Mike Green</a></p><p>Inspired by light and colour, contemporary impressionistic l...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'mike_green'; };
GEvent.addListener(markers['mike_green'], 'click', balloons['mike_green']);
map.addOverlay(markers['mike_green']);

markers['angela_hardwick'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Angela Hardwick' });
balloons['angela_hardwick'] = function() { markers['angela_hardwick'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="angela_hardwick.htm" title="Click to see details of Angela Hardwick"><img src="thumbs/hardwick__angela.jpg" alt="Angela Hardwick" /></a><p><a href="angela_hardwick.htm" title="Click to see details of Angela Hardwick">Angela Hardwick</a></p><p>Her work in tile and ceramic sculptures invites the viewer t...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'angela_hardwick'; };
GEvent.addListener(markers['angela_hardwick'], 'click', balloons['angela_hardwick']);
map.addOverlay(markers['angela_hardwick']);

markers['carl_hugger'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Carl Hugger' });
balloons['carl_hugger'] = function() { markers['carl_hugger'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="carl_hugger.htm" title="Click to see details of Carl Hugger"><img src="thumbs/hugger__carl.jpg" alt="Carl Hugger" /></a><p><a href="carl_hugger.htm" title="Click to see details of Carl Hugger">Carl Hugger</a></p><p>My inspiration comes from nature and the environment we live...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'carl_hugger'; };
GEvent.addListener(markers['carl_hugger'], 'click', balloons['carl_hugger']);
map.addOverlay(markers['carl_hugger']);

markers['ali_kitley_jones'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Ali Kitley-Jones' });
balloons['ali_kitley_jones'] = function() { markers['ali_kitley_jones'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ali_kitley_jones.htm" title="Click to see details of Ali Kitley-Jones"><img src="thumbs/kitley-jones__ali.jpg" alt="Ali Kitley-Jones" /></a><p><a href="ali_kitley_jones.htm" title="Click to see details of Ali Kitley-Jones">Ali Kitley-Jones</a></p><p>My most recent work is abstract. Mixed media and acrylic on ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ali_kitley_jones'; };
GEvent.addListener(markers['ali_kitley_jones'], 'click', balloons['ali_kitley_jones']);
map.addOverlay(markers['ali_kitley_jones']);

markers['chris_halstead'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'Chris Halstead' });
balloons['chris_halstead'] = function() { markers['chris_halstead'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="chris_halstead.htm" title="Click to see details of Chris Halstead"><img src="thumbs/halstead__chris.jpg" alt="Chris Halstead" /></a><p><a href="chris_halstead.htm" title="Click to see details of Chris Halstead">Chris Halstead</a></p><p>Bows for the string instrument family, hand crafted using tr...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'chris_halstead'; };
GEvent.addListener(markers['chris_halstead'], 'click', balloons['chris_halstead']);
map.addOverlay(markers['chris_halstead']);

markers['david_lloyd'] = new GMarker(new GLatLng(53.378264, -1.466616), { title:'David Lloyd' });
balloons['david_lloyd'] = function() { markers['david_lloyd'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="david_lloyd.htm" title="Click to see details of David Lloyd"><img src="thumbs/lloyd__david.jpg" alt="David Lloyd" /></a><p><a href="david_lloyd.htm" title="Click to see details of David Lloyd">David Lloyd</a></p><p>Furniture, jewellery benches, workbenches and small wooden b...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'david_lloyd'; };
GEvent.addListener(markers['david_lloyd'], 'click', balloons['david_lloyd']);
map.addOverlay(markers['david_lloyd']);

markers['annette_petch'] = new GMarker(new GLatLng(53.378264, -1.466316), { title:'Annette Petch' });
balloons['annette_petch'] = function() { markers['annette_petch'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="annette_petch.htm" title="Click to see details of Annette Petch"><img src="thumbs/petch__annette.jpg" alt="Annette Petch" /></a><p><a href="annette_petch.htm" title="Click to see details of Annette Petch">Annette Petch</a></p><p>I make silver and gold jewellery, based on natural forms. I ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'annette_petch'; };
GEvent.addListener(markers['annette_petch'], 'click', balloons['annette_petch']);
map.addOverlay(markers['annette_petch']);

markers['richard_priestley'] = new GMarker(new GLatLng(53.378264, -1.466016), { title:'Richard Priestley' });
balloons['richard_priestley'] = function() { markers['richard_priestley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="richard_priestley.htm" title="Click to see details of Richard Priestley"><img src="thumbs/priestley__richard.jpg" alt="Richard Priestley" /></a><p><a href="richard_priestley.htm" title="Click to see details of Richard Priestley">Richard Priestley</a></p><p>Contemporary silver jewellery inlaid with semi precious ston...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'richard_priestley'; };
GEvent.addListener(markers['richard_priestley'], 'click', balloons['richard_priestley']);
map.addOverlay(markers['richard_priestley']);

markers['jonathan_taylor'] = new GMarker(new GLatLng(53.378264, -1.465716), { title:'Jonathan Taylor' });
balloons['jonathan_taylor'] = function() { markers['jonathan_taylor'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jonathan_taylor.htm" title="Click to see details of Jonathan Taylor"><img src="thumbs/taylor__jonathan.jpg" alt="Jonathan Taylor" /></a><p><a href="jonathan_taylor.htm" title="Click to see details of Jonathan Taylor">Jonathan Taylor</a></p><p>Photograph: Hinged silver neckpiece with pendulum locket. De...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jonathan_taylor'; };
GEvent.addListener(markers['jonathan_taylor'], 'click', balloons['jonathan_taylor']);
map.addOverlay(markers['jonathan_taylor']);

markers['the_academy_of_makers'] = new GMarker(new GLatLng(53.378264, -1.465416), { title:'The Academy of Makers' });
balloons['the_academy_of_makers'] = function() { markers['the_academy_of_makers'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="the_academy_of_makers.htm" title="Click to see details of The Academy of Makers"><img src="thumbs/academy_of_makers_1.jpg" alt="The Academy of Makers" /></a><p><a href="the_academy_of_makers.htm" title="Click to see details of The Academy of Makers">The Academy of Makers</a></p><p>Freeman College (also on this site) has established the Acad...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'the_academy_of_makers'; };
GEvent.addListener(markers['the_academy_of_makers'], 'click', balloons['the_academy_of_makers']);
map.addOverlay(markers['the_academy_of_makers']);

markers['freeman_college'] = new GMarker(new GLatLng(53.378264, -1.466916), { title:'Freeman College' });
balloons['freeman_college'] = function() { markers['freeman_college'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="freeman_college.htm" title="Click to see details of Freeman College"><img src="thumbs/freeman_college.jpg" alt="Freeman College" /></a><p><a href="freeman_college.htm" title="Click to see details of Freeman College">Freeman College</a></p><p>Freeman College\'s newly opened Sterling Works\' craft and met...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'freeman_college'; };
GEvent.addListener(markers['freeman_college'], 'click', balloons['freeman_college']);
map.addOverlay(markers['freeman_college']);

markers['cynthia_harrison'] = new GMarker(new GLatLng(53.378922, -1.471616), { title:'Cynthia Harrison' });
balloons['cynthia_harrison'] = function() { markers['cynthia_harrison'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="cynthia_harrison.htm" title="Click to see details of Cynthia Harrison"><img src="thumbs/harrison__cynthia.jpg" alt="Cynthia Harrison" /></a><p><a href="cynthia_harrison.htm" title="Click to see details of Cynthia Harrison">Cynthia Harrison</a></p><p>Cynthia uses painting, drawing and printmaking to encourage ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'cynthia_harrison'; };
GEvent.addListener(markers['cynthia_harrison'], 'click', balloons['cynthia_harrison']);
map.addOverlay(markers['cynthia_harrison']);

markers['bank_street_studios'] = new GMarker(new GLatLng(53.378922, -1.471316), { title:'Bank Street Studios' });
balloons['bank_street_studios'] = function() { markers['bank_street_studios'].openInfoWindowHtml('<div class="balloon"><p><a href="bank_street_studios.htm" title="Click to see details of Bank Street Studios">Bank Street Studios</a></p><p>New studio and gallery opening for 2008....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'bank_street_studios'; };
GEvent.addListener(markers['bank_street_studios'], 'click', balloons['bank_street_studios']);
map.addOverlay(markers['bank_street_studios']);

markers['stephen_todd'] = new GMarker(new GLatLng(53.375710, -1.470780), { title:'Stephen Todd' });
balloons['stephen_todd'] = function() { markers['stephen_todd'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="stephen_todd.htm" title="Click to see details of Stephen Todd"><img src="thumbs/todd__stephen.jpg" alt="Stephen Todd" /></a><p><a href="stephen_todd.htm" title="Click to see details of Stephen Todd">Stephen Todd</a></p><p>Painting, drawing, printmaking and photographic-based images...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'stephen_todd'; };
GEvent.addListener(markers['stephen_todd'], 'click', balloons['stephen_todd']);
map.addOverlay(markers['stephen_todd']);

markers['sallyann_carlin'] = new GMarker(new GLatLng(53.375710, -1.470480), { title:'Sallyann Carlin' });
balloons['sallyann_carlin'] = function() { markers['sallyann_carlin'].openInfoWindowHtml('<div class="balloon"><p><a href="sallyann_carlin.htm" title="Click to see details of Sallyann Carlin">Sallyann Carlin</a></p><p>(Not parcipating in this year\'s Open Up event) Webcam/instal...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sallyann_carlin'; };
GEvent.addListener(markers['sallyann_carlin'], 'click', balloons['sallyann_carlin']);
map.addOverlay(markers['sallyann_carlin']);

markers['bloc_studios'] = new GMarker(new GLatLng(53.375710, -1.470180), { title:'Bloc Studios' });
balloons['bloc_studios'] = function() { markers['bloc_studios'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="bloc_studios.htm" title="Click to see details of Bloc Studios"><img src="thumbs/bloc.jpg" alt="Bloc Studios" /></a><p><a href="bloc_studios.htm" title="Click to see details of Bloc Studios">Bloc Studios</a></p><p>Contemporary artists, producing painting, drawing, photograp...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'bloc_studios'; };
GEvent.addListener(markers['bloc_studios'], 'click', balloons['bloc_studios']);
map.addOverlay(markers['bloc_studios']);

markers['philip_cole'] = new GMarker(new GLatLng(53.375664, -1.452547), { title:'Philip Cole' });
balloons['philip_cole'] = function() { markers['philip_cole'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="philip_cole.htm" title="Click to see details of Philip Cole"><img src="thumbs/cole__philip.jpg" alt="Philip Cole" /></a><p><a href="philip_cole.htm" title="Click to see details of Philip Cole">Philip Cole</a></p><p>Paintings, drawings and bronzes. From life or from archive o...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'philip_cole'; };
GEvent.addListener(markers['philip_cole'], 'click', balloons['philip_cole']);
map.addOverlay(markers['philip_cole']);

markers['gabby_hanlon'] = new GMarker(new GLatLng(53.375664, -1.452247), { title:'Gabby Hanlon' });
balloons['gabby_hanlon'] = function() { markers['gabby_hanlon'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="gabby_hanlon.htm" title="Click to see details of Gabby Hanlon"><img src="thumbs/hanlon__gabby.jpg" alt="Gabby Hanlon" /></a><p><a href="gabby_hanlon.htm" title="Click to see details of Gabby Hanlon">Gabby Hanlon</a></p><p>These drawings and paintings from interiors and landscapes e...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'gabby_hanlon'; };
GEvent.addListener(markers['gabby_hanlon'], 'click', balloons['gabby_hanlon']);
map.addOverlay(markers['gabby_hanlon']);

markers['georgia_haseldine'] = new GMarker(new GLatLng(53.375664, -1.451947), { title:'Georgia Haseldine' });
balloons['georgia_haseldine'] = function() { markers['georgia_haseldine'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="georgia_haseldine.htm" title="Click to see details of Georgia Haseldine"><img src="thumbs/haseldine__georgia.jpg" alt="Georgia Haseldine" /></a><p><a href="georgia_haseldine.htm" title="Click to see details of Georgia Haseldine">Georgia Haseldine</a></p><p>Vivid figurative paintings, drawings and photographs which a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'georgia_haseldine'; };
GEvent.addListener(markers['georgia_haseldine'], 'click', balloons['georgia_haseldine']);
map.addOverlay(markers['georgia_haseldine']);

markers['66_fitzwalter_road'] = new GMarker(new GLatLng(53.375664, -1.451647), { title:'66 Fitzwalter Road' });
balloons['66_fitzwalter_road'] = function() { markers['66_fitzwalter_road'].openInfoWindowHtml('<div class="balloon"><p><a href="66_fitzwalter_road.htm" title="Click to see details of 66 Fitzwalter Road">66 Fitzwalter Road</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '66_fitzwalter_road'; };
GEvent.addListener(markers['66_fitzwalter_road'], 'click', balloons['66_fitzwalter_road']);
map.addOverlay(markers['66_fitzwalter_road']);

markers['portland_works_studios'] = new GMarker(new GLatLng(53.369802, -1.474265), { title:'Portland Works Studios' });
balloons['portland_works_studios'] = function() { markers['portland_works_studios'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="portland_works_studios.htm" title="Click to see details of Portland Works Studios"><img src="thumbs/portland_works_studios.jpg" alt="Portland Works Studios" /></a><p><a href="portland_works_studios.htm" title="Click to see details of Portland Works Studios">Portland Works Studios</a></p><p>Abstract/figurative painting, 3D work, printmaking, digital/...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'portland_works_studios'; };
GEvent.addListener(markers['portland_works_studios'], 'click', balloons['portland_works_studios']);
map.addOverlay(markers['portland_works_studios']);

markers['karen_graham'] = new GMarker(new GLatLng(53.375201, -1.455590), { title:'Karen Graham' });
balloons['karen_graham'] = function() { markers['karen_graham'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="karen_graham.htm" title="Click to see details of Karen Graham"><img src="thumbs/graham__karen.jpg" alt="Karen Graham" /></a><p><a href="karen_graham.htm" title="Click to see details of Karen Graham">Karen Graham</a></p><p>I combine the ancient skills of spinning, weaving and dyeing...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'karen_graham'; };
GEvent.addListener(markers['karen_graham'], 'click', balloons['karen_graham']);
map.addOverlay(markers['karen_graham']);

markers['sarah_williams'] = new GMarker(new GLatLng(53.375201, -1.455290), { title:'Sarah Williams' });
balloons['sarah_williams'] = function() { markers['sarah_williams'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="sarah_williams.htm" title="Click to see details of Sarah Williams"><img src="thumbs/williams__sarah.jpg" alt="Sarah Williams" /></a><p><a href="sarah_williams.htm" title="Click to see details of Sarah Williams">Sarah Williams</a></p><p>Rugs, wall-hangings, cushions, scarves, cloth in sumptuous c...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sarah_williams'; };
GEvent.addListener(markers['sarah_williams'], 'click', balloons['sarah_williams']);
map.addOverlay(markers['sarah_williams']);

markers['soft_touch'] = new GMarker(new GLatLng(53.375201, -1.454990), { title:'Soft Touch' });
balloons['soft_touch'] = function() { markers['soft_touch'].openInfoWindowHtml('<div class="balloon"><p><a href="soft_touch.htm" title="Click to see details of Soft Touch">Soft Touch</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'soft_touch'; };
GEvent.addListener(markers['soft_touch'], 'click', balloons['soft_touch']);
map.addOverlay(markers['soft_touch']);

markers['anne_smithies'] = new GMarker(new GLatLng(53.400202, -1.466010), { title:'Anne Smithies' });
balloons['anne_smithies'] = function() { markers['anne_smithies'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anne_smithies.htm" title="Click to see details of Anne Smithies"><img src="thumbs/smithies__anne.jpg" alt="Anne Smithies" /></a><p><a href="anne_smithies.htm" title="Click to see details of Anne Smithies">Anne Smithies</a></p><p>Working in textiles, papers and recycled materials to produc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anne_smithies'; };
GEvent.addListener(markers['anne_smithies'], 'click', balloons['anne_smithies']);
map.addOverlay(markers['anne_smithies']);

markers['hendrika_stephens'] = new GMarker(new GLatLng(53.400202, -1.465710), { title:'Hendrika Stephens' });
balloons['hendrika_stephens'] = function() { markers['hendrika_stephens'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hendrika_stephens.htm" title="Click to see details of Hendrika Stephens"><img src="thumbs/stephens__hendrika.jpg" alt="Hendrika Stephens" /></a><p><a href="hendrika_stephens.htm" title="Click to see details of Hendrika Stephens">Hendrika Stephens</a></p><p>Ceramics, sculpture, jewellery. Sculptural and functional st...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hendrika_stephens'; };
GEvent.addListener(markers['hendrika_stephens'], 'click', balloons['hendrika_stephens']);
map.addOverlay(markers['hendrika_stephens']);

markers['studio_1750'] = new GMarker(new GLatLng(53.400202, -1.465410), { title:'Studio 1750' });
balloons['studio_1750'] = function() { markers['studio_1750'].openInfoWindowHtml('<div class="balloon"><p><a href="studio_1750.htm" title="Click to see details of Studio 1750">Studio 1750</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'studio_1750'; };
GEvent.addListener(markers['studio_1750'], 'click', balloons['studio_1750']);
map.addOverlay(markers['studio_1750']);

markers['at_home'] = new GMarker(new GLatLng(53.412625, -1.446311), { title:'At Home' });
balloons['at_home'] = function() { markers['at_home'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="at_home.htm" title="Click to see details of At Home"><img src="thumbs/at_home_2.jpg" alt="At Home" /></a><p><a href="at_home.htm" title="Click to see details of At Home">At Home</a></p><p>With work from local designer-makers, including: Anna Merced...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'at_home'; };
GEvent.addListener(markers['at_home'], 'click', balloons['at_home']);
map.addOverlay(markers['at_home']);

markers['homa_dadr'] = new GMarker(new GLatLng(53.410669, -1.472980), { title:'Homa Dadr' });
balloons['homa_dadr'] = function() { markers['homa_dadr'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="homa_dadr.htm" title="Click to see details of Homa Dadr"><img src="thumbs/dadr__homa.jpg" alt="Homa Dadr" /></a><p><a href="homa_dadr.htm" title="Click to see details of Homa Dadr">Homa Dadr</a></p><p>Portrait/landscape painter....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'homa_dadr'; };
GEvent.addListener(markers['homa_dadr'], 'click', balloons['homa_dadr']);
map.addOverlay(markers['homa_dadr']);

markers['alton_daley'] = new GMarker(new GLatLng(53.410669, -1.472680), { title:'Alton Daley' });
balloons['alton_daley'] = function() { markers['alton_daley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="alton_daley.htm" title="Click to see details of Alton Daley"><img src="thumbs/daley__alton.jpg" alt="Alton Daley" /></a><p><a href="alton_daley.htm" title="Click to see details of Alton Daley">Alton Daley</a></p><p>Abstract/landscape painter....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'alton_daley'; };
GEvent.addListener(markers['alton_daley'], 'click', balloons['alton_daley']);
map.addOverlay(markers['alton_daley']);

markers['mick_ibbotson'] = new GMarker(new GLatLng(53.410669, -1.472380), { title:'Mick Ibbotson' });
balloons['mick_ibbotson'] = function() { markers['mick_ibbotson'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="mick_ibbotson.htm" title="Click to see details of Mick Ibbotson"><img src="thumbs/ibbotson__mick.jpg" alt="Mick Ibbotson" /></a><p><a href="mick_ibbotson.htm" title="Click to see details of Mick Ibbotson">Mick Ibbotson</a></p><p>Mixed range of media including glass, paint and tile....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'mick_ibbotson'; };
GEvent.addListener(markers['mick_ibbotson'], 'click', balloons['mick_ibbotson']);
map.addOverlay(markers['mick_ibbotson']);

markers['noel_lockley'] = new GMarker(new GLatLng(53.410669, -1.472080), { title:'Noel Lockley' });
balloons['noel_lockley'] = function() { markers['noel_lockley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="noel_lockley.htm" title="Click to see details of Noel Lockley"><img src="thumbs/lockley__noel.jpg" alt="Noel Lockley" /></a><p><a href="noel_lockley.htm" title="Click to see details of Noel Lockley">Noel Lockley</a></p><p>My work is formed from real stories of present times using a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'noel_lockley'; };
GEvent.addListener(markers['noel_lockley'], 'click', balloons['noel_lockley']);
map.addOverlay(markers['noel_lockley']);

markers['bryan_munsey'] = new GMarker(new GLatLng(53.410669, -1.471780), { title:'Bryan Munsey' });
balloons['bryan_munsey'] = function() { markers['bryan_munsey'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="bryan_munsey.htm" title="Click to see details of Bryan Munsey"><img src="thumbs/munsey__bryan.jpg" alt="Bryan Munsey" /></a><p><a href="bryan_munsey.htm" title="Click to see details of Bryan Munsey">Bryan Munsey</a></p><p>Items including bowls, vases and platters turned from South ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'bryan_munsey'; };
GEvent.addListener(markers['bryan_munsey'], 'click', balloons['bryan_munsey']);
map.addOverlay(markers['bryan_munsey']);

markers['s5_artists'] = new GMarker(new GLatLng(53.410669, -1.471480), { title:'S5 Artists' });
balloons['s5_artists'] = function() { markers['s5_artists'].openInfoWindowHtml('<div class="balloon"><p><a href="s5_artists.htm" title="Click to see details of S5 Artists">S5 Artists</a></p><p>Exciting new work created by North Sheffield artists. Sponso...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 's5_artists'; };
GEvent.addListener(markers['s5_artists'], 'click', balloons['s5_artists']);
map.addOverlay(markers['s5_artists']);

markers['anima_art_studio'] = new GMarker(new GLatLng(53.394147, -1.498042), { title:'Anima Art Studio' });
balloons['anima_art_studio'] = function() { markers['anima_art_studio'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anima_art_studio.htm" title="Click to see details of Anima Art Studio"><img src="thumbs/anima_art_studio.jpg" alt="Anima Art Studio" /></a><p><a href="anima_art_studio.htm" title="Click to see details of Anima Art Studio">Anima Art Studio</a></p><p>Interesting, explosive, vibrant and colourful: full of cultu...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anima_art_studio'; };
GEvent.addListener(markers['anima_art_studio'], 'click', balloons['anima_art_studio']);
map.addOverlay(markers['anima_art_studio']);

markers['art_in_the_attic'] = new GMarker(new GLatLng(53.425517, -1.499419), { title:'Art in The Attic' });
balloons['art_in_the_attic'] = function() { markers['art_in_the_attic'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="art_in_the_attic.htm" title="Click to see details of Art in The Attic"><img src="thumbs/art_in_the_attic.jpg" alt="Art in The Attic" /></a><p><a href="art_in_the_attic.htm" title="Click to see details of Art in The Attic">Art in The Attic</a></p><p>A small group of artists exhibiting different forms includin...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'art_in_the_attic'; };
GEvent.addListener(markers['art_in_the_attic'], 'click', balloons['art_in_the_attic']);
map.addOverlay(markers['art_in_the_attic']);

markers['elton_clough'] = new GMarker(new GLatLng(53.390045, -1.480332), { title:'Elton Clough' });
balloons['elton_clough'] = function() { markers['elton_clough'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="elton_clough.htm" title="Click to see details of Elton Clough"><img src="thumbs/clough__elton.jpg" alt="Elton Clough" /></a><p><a href="elton_clough.htm" title="Click to see details of Elton Clough">Elton Clough</a></p><p>Bring your unwanted photographs and you/we will transform th...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'elton_clough'; };
GEvent.addListener(markers['elton_clough'], 'click', balloons['elton_clough']);
map.addOverlay(markers['elton_clough']);

markers['jane_dawson_and_gemma_thornton'] = new GMarker(new GLatLng(53.390045, -1.480032), { title:'Jane Dawson and Gemma Thornton' });
balloons['jane_dawson_and_gemma_thornton'] = function() { markers['jane_dawson_and_gemma_thornton'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jane_dawson_and_gemma_thornton.htm" title="Click to see details of Jane Dawson and Gemma Thornton"><img src="thumbs/thornton___jane_dawson_and_gemma.jpg" alt="Jane Dawson and Gemma Thornton" /></a><p><a href="jane_dawson_and_gemma_thornton.htm" title="Click to see details of Jane Dawson and Gemma Thornton">Jane Dawson and Gemma Thornton</a></p><p>Live Art between 11am-1.30pm and 2.30pm-5pm. SANDBAGS AND DI...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jane_dawson_and_gemma_thornton'; };
GEvent.addListener(markers['jane_dawson_and_gemma_thornton'], 'click', balloons['jane_dawson_and_gemma_thornton']);
map.addOverlay(markers['jane_dawson_and_gemma_thornton']);

markers['betty_tigers_hair_salon'] = new GMarker(new GLatLng(53.390045, -1.479732), { title:'Betty Tigers Hair Salon' });
balloons['betty_tigers_hair_salon'] = function() { markers['betty_tigers_hair_salon'].openInfoWindowHtml('<div class="balloon"><p><a href="betty_tigers_hair_salon.htm" title="Click to see details of Betty Tigers Hair Salon">Betty Tigers Hair Salon</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'betty_tigers_hair_salon'; };
GEvent.addListener(markers['betty_tigers_hair_salon'], 'click', balloons['betty_tigers_hair_salon']);
map.addOverlay(markers['betty_tigers_hair_salon']);

markers['claire_lee'] = new GMarker(new GLatLng(53.395510, -1.510087), { title:'Claire Lee' });
balloons['claire_lee'] = function() { markers['claire_lee'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="claire_lee.htm" title="Click to see details of Claire Lee"><img src="thumbs/lee__claire.jpg" alt="Claire Lee" /></a><p><a href="claire_lee.htm" title="Click to see details of Claire Lee">Claire Lee</a></p><p>Embodying frivolity and gravity, transparency and opacity, s...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'claire_lee'; };
GEvent.addListener(markers['claire_lee'], 'click', balloons['claire_lee']);
map.addOverlay(markers['claire_lee']);

markers['debbie_michaels'] = new GMarker(new GLatLng(53.395510, -1.509787), { title:'Debbie Michaels' });
balloons['debbie_michaels'] = function() { markers['debbie_michaels'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="debbie_michaels.htm" title="Click to see details of Debbie Michaels"><img src="thumbs/michaels__debbie.jpg" alt="Debbie Michaels" /></a><p><a href="debbie_michaels.htm" title="Click to see details of Debbie Michaels">Debbie Michaels</a></p><p>Exploring transitional states and aspects of the emotional l...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'debbie_michaels'; };
GEvent.addListener(markers['debbie_michaels'], 'click', balloons['debbie_michaels']);
map.addOverlay(markers['debbie_michaels']);

markers['jon_michaels'] = new GMarker(new GLatLng(53.395510, -1.509487), { title:'Jon Michaels' });
balloons['jon_michaels'] = function() { markers['jon_michaels'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jon_michaels.htm" title="Click to see details of Jon Michaels"><img src="thumbs/michaels__jon.jpg" alt="Jon Michaels" /></a><p><a href="jon_michaels.htm" title="Click to see details of Jon Michaels">Jon Michaels</a></p><p>Seeing things differently - abstract and figurative images t...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jon_michaels'; };
GEvent.addListener(markers['jon_michaels'], 'click', balloons['jon_michaels']);
map.addOverlay(markers['jon_michaels']);

markers['fern_folly'] = new GMarker(new GLatLng(53.395510, -1.509187), { title:'Fern Folly' });
balloons['fern_folly'] = function() { markers['fern_folly'].openInfoWindowHtml('<div class="balloon"><p><a href="fern_folly.htm" title="Click to see details of Fern Folly">Fern Folly</a></p><p>Home and studio of Claire Lee with guest artists, offering f...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'fern_folly'; };
GEvent.addListener(markers['fern_folly'], 'click', balloons['fern_folly']);
map.addOverlay(markers['fern_folly']);

markers['katherine_rhodes'] = new GMarker(new GLatLng(53.391084, -1.498544), { title:'Katherine Rhodes' });
balloons['katherine_rhodes'] = function() { markers['katherine_rhodes'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="katherine_rhodes.htm" title="Click to see details of Katherine Rhodes"><img src="thumbs/rhodes__katherine.jpg" alt="Katherine Rhodes" /></a><p><a href="katherine_rhodes.htm" title="Click to see details of Katherine Rhodes">Katherine Rhodes</a></p><p>Paintings of landscape, flowers, and the figure. I enjoy col...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'katherine_rhodes'; };
GEvent.addListener(markers['katherine_rhodes'], 'click', balloons['katherine_rhodes']);
map.addOverlay(markers['katherine_rhodes']);

markers['paul_schatzberger'] = new GMarker(new GLatLng(53.391084, -1.498244), { title:'Paul Schatzberger' });
balloons['paul_schatzberger'] = function() { markers['paul_schatzberger'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="paul_schatzberger.htm" title="Click to see details of Paul Schatzberger"><img src="thumbs/schatzberger__paul.jpg" alt="Paul Schatzberger" /></a><p><a href="paul_schatzberger.htm" title="Click to see details of Paul Schatzberger">Paul Schatzberger</a></p><p>Limited edition photographs including social documentary ima...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'paul_schatzberger'; };
GEvent.addListener(markers['paul_schatzberger'], 'click', balloons['paul_schatzberger']);
map.addOverlay(markers['paul_schatzberger']);

markers['lesley_lister'] = new GMarker(new GLatLng(53.391084, -1.497944), { title:'Lesley Lister' });
balloons['lesley_lister'] = function() { markers['lesley_lister'].openInfoWindowHtml('<div class="balloon"><p><a href="lesley_lister.htm" title="Click to see details of Lesley Lister">Lesley Lister</a></p><p>(Not parcipating in this year\'s Open Up event) Mixed media, ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lesley_lister'; };
GEvent.addListener(markers['lesley_lister'], 'click', balloons['lesley_lister']);
map.addOverlay(markers['lesley_lister']);

markers['imogen_purslow'] = new GMarker(new GLatLng(53.391084, -1.497644), { title:'Imogen Purslow' });
balloons['imogen_purslow'] = function() { markers['imogen_purslow'].openInfoWindowHtml('<div class="balloon"><p><a href="imogen_purslow.htm" title="Click to see details of Imogen Purslow">Imogen Purslow</a></p><p>(Not parcipating in this year\'s Open Up event) Fused glass j...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'imogen_purslow'; };
GEvent.addListener(markers['imogen_purslow'], 'click', balloons['imogen_purslow']);
map.addOverlay(markers['imogen_purslow']);

markers['the_lodge_house'] = new GMarker(new GLatLng(53.391084, -1.497344), { title:'The Lodge House' });
balloons['the_lodge_house'] = function() { markers['the_lodge_house'].openInfoWindowHtml('<div class="balloon"><p><a href="the_lodge_house.htm" title="Click to see details of The Lodge House">The Lodge House</a></p><p>Walkley\'s natural health practice is transformed into a welc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'the_lodge_house'; };
GEvent.addListener(markers['the_lodge_house'], 'click', balloons['the_lodge_house']);
map.addOverlay(markers['the_lodge_house']);

markers['space_59'] = new GMarker(new GLatLng(53.391719, -1.497844), { title:'Space 59' });
balloons['space_59'] = function() { markers['space_59'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="space_59.htm" title="Click to see details of Space 59"><img src="thumbs/space_59.jpg" alt="Space 59" /></a><p><a href="space_59.htm" title="Click to see details of Space 59">Space 59</a></p><p>Converted coach house: featuring a new collection of waterco...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'space_59'; };
GEvent.addListener(markers['space_59'], 'click', balloons['space_59']);
map.addOverlay(markers['space_59']);

markers['ecclesall_sawmill_working_woodlands'] = new GMarker(new GLatLng(53.335992, -1.511940), { title:'Ecclesall Sawmill Working Woodlands' });
balloons['ecclesall_sawmill_working_woodlands'] = function() { markers['ecclesall_sawmill_working_woodlands'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ecclesall_sawmill_working_woodlands.htm" title="Click to see details of Ecclesall Sawmill Working Woodlands"><img src="thumbs/ecclesall_sawmill_working_woodlands.jpg" alt="Ecclesall Sawmill Working Woodlands" /></a><p><a href="ecclesall_sawmill_working_woodlands.htm" title="Click to see details of Ecclesall Sawmill Working Woodlands">Ecclesall Sawmill Working Woodlands</a></p><p>All things wood. Talented timber-based artist and designer m...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ecclesall_sawmill_working_woodlands'; };
GEvent.addListener(markers['ecclesall_sawmill_working_woodlands'], 'click', balloons['ecclesall_sawmill_working_woodlands']);
map.addOverlay(markers['ecclesall_sawmill_working_woodlands']);

markers['kristan_baggaley'] = new GMarker(new GLatLng(53.357434, -1.491051), { title:'Kristan Baggaley' });
balloons['kristan_baggaley'] = function() { markers['kristan_baggaley'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="kristan_baggaley.htm" title="Click to see details of Kristan Baggaley"><img src="thumbs/baggaley__kristan.jpg" alt="Kristan Baggaley" /></a><p><a href="kristan_baggaley.htm" title="Click to see details of Kristan Baggaley">Kristan Baggaley</a></p><p>New venue, new work, new beginnings. Oil on canvas. Landscap...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'kristan_baggaley'; };
GEvent.addListener(markers['kristan_baggaley'], 'click', balloons['kristan_baggaley']);
map.addOverlay(markers['kristan_baggaley']);

markers['lucy_coyne'] = new GMarker(new GLatLng(53.357434, -1.490751), { title:'Lucy Coyne' });
balloons['lucy_coyne'] = function() { markers['lucy_coyne'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lucy_coyne.htm" title="Click to see details of Lucy Coyne"><img src="thumbs/coyne__lucy.jpg" alt="Lucy Coyne" /></a><p><a href="lucy_coyne.htm" title="Click to see details of Lucy Coyne">Lucy Coyne</a></p><p>Environment to excite the senses. Familiar materials present...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lucy_coyne'; };
GEvent.addListener(markers['lucy_coyne'], 'click', balloons['lucy_coyne']);
map.addOverlay(markers['lucy_coyne']);

markers['edge_10_studio'] = new GMarker(new GLatLng(53.357434, -1.490451), { title:'Edge 10 Studio' });
balloons['edge_10_studio'] = function() { markers['edge_10_studio'].openInfoWindowHtml('<div class="balloon"><p><a href="edge_10_studio.htm" title="Click to see details of Edge 10 Studio">Edge 10 Studio</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'edge_10_studio'; };
GEvent.addListener(markers['edge_10_studio'], 'click', balloons['edge_10_studio']);
map.addOverlay(markers['edge_10_studio']);

markers['antonia_salmon'] = new GMarker(new GLatLng(53.357318,	-1.493486), { title:'Antonia Salmon' });
balloons['antonia_salmon'] = function() { markers['antonia_salmon'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="kristan_baggaley.htm" title="Click to see details of Kristan Baggaley"><img src="thumbs/salmon__antonia.jpg" alt="Antonia Salmon" /></a><p><a href="antonia_salmon.htm" title="Click to see details of Antonia Salmon">Antonia Salmon</a></p><p>Fine smoke-fired ceramic sculpture and vessels.</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'antonia_salmon'; };
GEvent.addListener(markers['antonia_salmon'], 'click', balloons['antonia_salmon']);
map.addOverlay(markers['antonia_salmon']);

markers['freeform_ceramics'] = new GMarker(new GLatLng(53.362080, -1.488681), { title:'Freeform Ceramics' });
balloons['freeform_ceramics'] = function() { markers['freeform_ceramics'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="freeform_ceramics.htm" title="Click to see details of Freeform Ceramics"><img src="thumbs/freeform_ceramics.jpg" alt="Freeform Ceramics" /></a><p><a href="freeform_ceramics.htm" title="Click to see details of Freeform Ceramics">Freeform Ceramics</a></p><p>Unique, thrown stoneware and porcelain vessels with a twist....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'freeform_ceramics'; };
GEvent.addListener(markers['freeform_ceramics'], 'click', balloons['freeform_ceramics']);
map.addOverlay(markers['freeform_ceramics']);

markers['b_e_ceramics'] = new GMarker(new GLatLng(53.382847, -1.522033), { title:'B E Ceramics' });
balloons['b_e_ceramics'] = function() { markers['b_e_ceramics'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="b_e_ceramics.htm" title="Click to see details of B E Ceramics"><img src="thumbs/b_e_ceramics.jpg" alt="B E Ceramics" /></a><p><a href="b_e_ceramics.htm" title="Click to see details of B E Ceramics">B E Ceramics</a></p><p>I use clay to produce unique tactile pieces such as vases, b...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'b_e_ceramics'; };
GEvent.addListener(markers['b_e_ceramics'], 'click', balloons['b_e_ceramics']);
map.addOverlay(markers['b_e_ceramics']);

markers['studio_20'] = new GMarker(new GLatLng(53.366789, -1.555833), { title:'Studio 20' });
balloons['studio_20'] = function() { markers['studio_20'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="studio_20.htm" title="Click to see details of Studio 20"><img src="thumbs/studio_20.jpg" alt="Studio 20" /></a><p><a href="studio_20.htm" title="Click to see details of Studio 20">Studio 20</a></p><p>Contemporary fused art glass plates and bowls, dichroic glas...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'studio_20'; };
GEvent.addListener(markers['studio_20'], 'click', balloons['studio_20']);
map.addOverlay(markers['studio_20']);

markers['les_gillott'] = new GMarker(new GLatLng(53.363105, -1.495116), { title:'Les Gillott' });
balloons['les_gillott'] = function() { markers['les_gillott'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="les_gillott.htm" title="Click to see details of Les Gillott"><img src="thumbs/gillott__les.jpg" alt="Les Gillott" /></a><p><a href="les_gillott.htm" title="Click to see details of Les Gillott">Les Gillott</a></p><p>Oil landscapes....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'les_gillott'; };
GEvent.addListener(markers['les_gillott'], 'click', balloons['les_gillott']);
map.addOverlay(markers['les_gillott']);

markers['maggie_rayner'] = new GMarker(new GLatLng(53.363105, -1.494816), { title:'Maggie Rayner' });
balloons['maggie_rayner'] = function() { markers['maggie_rayner'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="maggie_rayner.htm" title="Click to see details of Maggie Rayner"><img src="thumbs/raynor__maggie.jpg" alt="Maggie Rayner" /></a><p><a href="maggie_rayner.htm" title="Click to see details of Maggie Rayner">Maggie Rayner</a></p><p>Watercolour equine studies....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'maggie_rayner'; };
GEvent.addListener(markers['maggie_rayner'], 'click', balloons['maggie_rayner']);
map.addOverlay(markers['maggie_rayner']);

markers['robert_twigg'] = new GMarker(new GLatLng(53.363105, -1.494516), { title:'Robert Twigg' });
balloons['robert_twigg'] = function() { markers['robert_twigg'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="robert_twigg.htm" title="Click to see details of Robert Twigg"><img src="thumbs/twigg__robert.jpg" alt="Robert Twigg" /></a><p><a href="robert_twigg.htm" title="Click to see details of Robert Twigg">Robert Twigg</a></p><p>Rural and industrial photography....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'robert_twigg'; };
GEvent.addListener(markers['robert_twigg'], 'click', balloons['robert_twigg']);
map.addOverlay(markers['robert_twigg']);

markers['41_st_andrews_road'] = new GMarker(new GLatLng(53.363105, -1.494216), { title:'41 St Andrews Road' });
balloons['41_st_andrews_road'] = function() { markers['41_st_andrews_road'].openInfoWindowHtml('<div class="balloon"><p><a href="41_st_andrews_road.htm" title="Click to see details of 41 St Andrews Road">41 St Andrews Road</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '41_st_andrews_road'; };
GEvent.addListener(markers['41_st_andrews_road'], 'click', balloons['41_st_andrews_road']);
map.addOverlay(markers['41_st_andrews_road']);

markers['jane_horton'] = new GMarker(new GLatLng(53.368349, -1.485495), { title:'Jane Horton' });
balloons['jane_horton'] = function() { markers['jane_horton'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jane_horton.htm" title="Click to see details of Jane Horton"><img src="thumbs/horton__jane.jpg" alt="Jane Horton" /></a><p><a href="jane_horton.htm" title="Click to see details of Jane Horton">Jane Horton</a></p><p>Landscapes, figurative and semiabstract. Mixed media, mono p...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jane_horton'; };
GEvent.addListener(markers['jane_horton'], 'click', balloons['jane_horton']);
map.addOverlay(markers['jane_horton']);

markers['avril_lyons'] = new GMarker(new GLatLng(53.368349, -1.485195), { title:'Avril Lyons' });
balloons['avril_lyons'] = function() { markers['avril_lyons'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="avril_lyons.htm" title="Click to see details of Avril Lyons"><img src="thumbs/lyons__avril.jpg" alt="Avril Lyons" /></a><p><a href="avril_lyons.htm" title="Click to see details of Avril Lyons">Avril Lyons</a></p><p>Semi-abstract land and seascapes. Inspired by the light and ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'avril_lyons'; };
GEvent.addListener(markers['avril_lyons'], 'click', balloons['avril_lyons']);
map.addOverlay(markers['avril_lyons']);

markers['rosalie_wyatt'] = new GMarker(new GLatLng(53.368349, -1.484895), { title:'Rosalie Wyatt' });
balloons['rosalie_wyatt'] = function() { markers['rosalie_wyatt'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="rosalie_wyatt.htm" title="Click to see details of Rosalie Wyatt"><img src="thumbs/wyatt__rosalie.jpg" alt="Rosalie Wyatt" /></a><p><a href="rosalie_wyatt.htm" title="Click to see details of Rosalie Wyatt">Rosalie Wyatt</a></p><p>Shapes repeated in rock fall and sea inlets draw me. Revisit...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'rosalie_wyatt'; };
GEvent.addListener(markers['rosalie_wyatt'], 'click', balloons['rosalie_wyatt']);
map.addOverlay(markers['rosalie_wyatt']);

markers['14_grange_road'] = new GMarker(new GLatLng(53.368349, -1.484595), { title:'14 Grange Road' });
balloons['14_grange_road'] = function() { markers['14_grange_road'].openInfoWindowHtml('<div class="balloon"><p><a href="14_grange_road.htm" title="Click to see details of 14 Grange Road">14 Grange Road</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '14_grange_road'; };
GEvent.addListener(markers['14_grange_road'], 'click', balloons['14_grange_road']);
map.addOverlay(markers['14_grange_road']);

markers['jean_cherry'] = new GMarker(new GLatLng(53.353864, -1.510158), { title:'Jean Cherry' });
balloons['jean_cherry'] = function() { markers['jean_cherry'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jean_cherry.htm" title="Click to see details of Jean Cherry"><img src="thumbs/cherry__jean.jpg" alt="Jean Cherry" /></a><p><a href="jean_cherry.htm" title="Click to see details of Jean Cherry">Jean Cherry</a></p><p>PRINTMAKING PLUS: screen prints, mono prints, collagraphs, d...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jean_cherry'; };
GEvent.addListener(markers['jean_cherry'], 'click', balloons['jean_cherry']);
map.addOverlay(markers['jean_cherry']);

markers['norman_cherry'] = new GMarker(new GLatLng(53.353864, -1.509858), { title:'Norman Cherry' });
balloons['norman_cherry'] = function() { markers['norman_cherry'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="norman_cherry.htm" title="Click to see details of Norman Cherry"><img src="thumbs/cherry__norman.jpg" alt="Norman Cherry" /></a><p><a href="norman_cherry.htm" title="Click to see details of Norman Cherry">Norman Cherry</a></p><p>Wheel thrown, glazed domestic pottery. Hand coiled wood fire...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'norman_cherry'; };
GEvent.addListener(markers['norman_cherry'], 'click', balloons['norman_cherry']);
map.addOverlay(markers['norman_cherry']);

markers['37_banner_cross_road'] = new GMarker(new GLatLng(53.353864, -1.509558), { title:'37 Banner Cross Road' });
balloons['37_banner_cross_road'] = function() { markers['37_banner_cross_road'].openInfoWindowHtml('<div class="balloon"><p><a href="37_banner_cross_road.htm" title="Click to see details of 37 Banner Cross Road">37 Banner Cross Road</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '37_banner_cross_road'; };
GEvent.addListener(markers['37_banner_cross_road'], 'click', balloons['37_banner_cross_road']);
map.addOverlay(markers['37_banner_cross_road']);

markers['shirley_cameron'] = new GMarker(new GLatLng(53.367035, -1.510804), { title:'Shirley Cameron' });
balloons['shirley_cameron'] = function() { markers['shirley_cameron'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="shirley_cameron.htm" title="Click to see details of Shirley Cameron"><img src="thumbs/cameron__shirley.jpg" alt="Shirley Cameron" /></a><p><a href="shirley_cameron.htm" title="Click to see details of Shirley Cameron">Shirley Cameron</a></p><p>An Ascent - Installation in my house. Starting from the base...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'shirley_cameron'; };
GEvent.addListener(markers['shirley_cameron'], 'click', balloons['shirley_cameron']);
map.addOverlay(markers['shirley_cameron']);

markers['dr_roland_miller'] = new GMarker(new GLatLng(53.367035, -1.510504), { title:'Dr. Roland Miller' });
balloons['dr_roland_miller'] = function() { markers['dr_roland_miller'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="dr_roland_miller.htm" title="Click to see details of Dr. Roland Miller"><img src="thumbs/miller___dr_roland.jpg" alt="Dr. Roland Miller" /></a><p><a href="dr_roland_miller.htm" title="Click to see details of Dr. Roland Miller">Dr. Roland Miller</a></p><p>&quot;Quote - unquote&quot; Exploring the meaning and application of t...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'dr_roland_miller'; };
GEvent.addListener(markers['dr_roland_miller'], 'click', balloons['dr_roland_miller']);
map.addOverlay(markers['dr_roland_miller']);

markers['49_stainton_road'] = new GMarker(new GLatLng(53.367035, -1.510204), { title:'49 Stainton Road' });
balloons['49_stainton_road'] = function() { markers['49_stainton_road'].openInfoWindowHtml('<div class="balloon"><p><a href="49_stainton_road.htm" title="Click to see details of 49 Stainton Road">49 Stainton Road</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '49_stainton_road'; };
GEvent.addListener(markers['49_stainton_road'], 'click', balloons['49_stainton_road']);
map.addOverlay(markers['49_stainton_road']);

markers['samantha_groom'] = new GMarker(new GLatLng(53.367740, -1.527177), { title:'Samantha Groom' });
balloons['samantha_groom'] = function() { markers['samantha_groom'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="samantha_groom.htm" title="Click to see details of Samantha Groom"><img src="thumbs/groom__samantha.jpg" alt="Samantha Groom" /></a><p><a href="samantha_groom.htm" title="Click to see details of Samantha Groom">Samantha Groom</a></p><p>Glimpsed moments during the daily grind mixed with familiar ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'samantha_groom'; };
GEvent.addListener(markers['samantha_groom'], 'click', balloons['samantha_groom']);
map.addOverlay(markers['samantha_groom']);

markers['lena_papapanagiotou'] = new GMarker(new GLatLng(53.367740, -1.526877), { title:'Lena Papapanagiotou' });
balloons['lena_papapanagiotou'] = function() { markers['lena_papapanagiotou'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lena_papapanagiotou.htm" title="Click to see details of Lena Papapanagiotou"><img src="thumbs/papapanagiotou__lena.jpg" alt="Lena Papapanagiotou" /></a><p><a href="lena_papapanagiotou.htm" title="Click to see details of Lena Papapanagiotou">Lena Papapanagiotou</a></p><p>New paintings of rich acrylic colours dealing with ideas of ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lena_papapanagiotou'; };
GEvent.addListener(markers['lena_papapanagiotou'], 'click', balloons['lena_papapanagiotou']);
map.addOverlay(markers['lena_papapanagiotou']);

markers['lesley_warren'] = new GMarker(new GLatLng(53.367740, -1.526577), { title:'Lesley Warren' });
balloons['lesley_warren'] = function() { markers['lesley_warren'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lesley_warren.htm" title="Click to see details of Lesley Warren"><img src="thumbs/warren__lesley.jpg" alt="Lesley Warren" /></a><p><a href="lesley_warren.htm" title="Click to see details of Lesley Warren">Lesley Warren</a></p><p>Drawings and prints, including woodcuts and collagraphs, dea...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lesley_warren'; };
GEvent.addListener(markers['lesley_warren'], 'click', balloons['lesley_warren']);
map.addOverlay(markers['lesley_warren']);

markers['hangingwater_studio'] = new GMarker(new GLatLng(53.367740, -1.526277), { title:'Hangingwater Studio' });
balloons['hangingwater_studio'] = function() { markers['hangingwater_studio'].openInfoWindowHtml('<div class="balloon"><p><a href="hangingwater_studio.htm" title="Click to see details of Hangingwater Studio">Hangingwater Studio</a></p><p>Artist run studio with a regular programme of workshops for ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hangingwater_studio'; };
GEvent.addListener(markers['hangingwater_studio'], 'click', balloons['hangingwater_studio']);
map.addOverlay(markers['hangingwater_studio']);

markers['jane_cox'] = new GMarker(new GLatLng(53.364646, -1.515505), { title:'Jane Cox' });
balloons['jane_cox'] = function() { markers['jane_cox'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jane_cox.htm" title="Click to see details of Jane Cox"><img src="thumbs/cox__jane.jpg" alt="Jane Cox" /></a><p><a href="jane_cox.htm" title="Click to see details of Jane Cox">Jane Cox</a></p><p>Decorative and functional ceramics and graphic works. Bold, ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jane_cox'; };
GEvent.addListener(markers['jane_cox'], 'click', balloons['jane_cox']);
map.addOverlay(markers['jane_cox']);

markers['erica_just'] = new GMarker(new GLatLng(53.364646, -1.515205), { title:'Erica Just' });
balloons['erica_just'] = function() { markers['erica_just'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="erica_just.htm" title="Click to see details of Erica Just"><img src="thumbs/just__erica.jpg" alt="Erica Just" /></a><p><a href="erica_just.htm" title="Click to see details of Erica Just">Erica Just</a></p><p>Erica Just will be showing her original watercolours inspire...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'erica_just'; };
GEvent.addListener(markers['erica_just'], 'click', balloons['erica_just']);
map.addOverlay(markers['erica_just']);

markers['sue_lowday'] = new GMarker(new GLatLng(53.364646, -1.514905), { title:'Sue Lowday' });
balloons['sue_lowday'] = function() { markers['sue_lowday'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="sue_lowday.htm" title="Click to see details of Sue Lowday"><img src="thumbs/lowday__sue.jpg" alt="Sue Lowday" /></a><p><a href="sue_lowday.htm" title="Click to see details of Sue Lowday">Sue Lowday</a></p><p>Belts, bags, organisers and purses individually designed and...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'sue_lowday'; };
GEvent.addListener(markers['sue_lowday'], 'click', balloons['sue_lowday']);
map.addOverlay(markers['sue_lowday']);

markers['the_green_house'] = new GMarker(new GLatLng(53.364646, -1.514605), { title:'The Green House' });
balloons['the_green_house'] = function() { markers['the_green_house'].openInfoWindowHtml('<div class="balloon"><p><a href="the_green_house.htm" title="Click to see details of The Green House">The Green House</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'the_green_house'; };
GEvent.addListener(markers['the_green_house'], 'click', balloons['the_green_house']);
map.addOverlay(markers['the_green_house']);

markers['steve_elliott'] = new GMarker(new GLatLng(53.312598, -1.535381), { title:'Steve Elliott' });
balloons['steve_elliott'] = function() { markers['steve_elliott'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="steve_elliott.htm" title="Click to see details of Steve Elliott"><img src="thumbs/elliott__steve.jpg" alt="Steve Elliott" /></a><p><a href="steve_elliott.htm" title="Click to see details of Steve Elliott">Steve Elliott</a></p><p>My paintings are about light, space and atmosphere in the De...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'steve_elliott'; };
GEvent.addListener(markers['steve_elliott'], 'click', balloons['steve_elliott']);
map.addOverlay(markers['steve_elliott']);

markers['martin_field'] = new GMarker(new GLatLng(53.312598, -1.535081), { title:'Martin Field' });
balloons['martin_field'] = function() { markers['martin_field'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="martin_field.htm" title="Click to see details of Martin Field"><img src="thumbs/field__martin.jpg" alt="Martin Field" /></a><p><a href="martin_field.htm" title="Click to see details of Martin Field">Martin Field</a></p><p>My aim is to capture mood and atmosphere in landscape photog...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'martin_field'; };
GEvent.addListener(markers['martin_field'], 'click', balloons['martin_field']);
map.addOverlay(markers['martin_field']);

markers['49_meadow_grove'] = new GMarker(new GLatLng(53.312598, -1.534781), { title:'49 Meadow Grove' });
balloons['49_meadow_grove'] = function() { markers['49_meadow_grove'].openInfoWindowHtml('<div class="balloon"><p><a href="49_meadow_grove.htm" title="Click to see details of 49 Meadow Grove">49 Meadow Grove</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '49_meadow_grove'; };
GEvent.addListener(markers['49_meadow_grove'], 'click', balloons['49_meadow_grove']);
map.addOverlay(markers['49_meadow_grove']);

markers['john_thatcher'] = new GMarker(new GLatLng(53.320785, -1.527952), { title:'John Thatcher' });
balloons['john_thatcher'] = function() { markers['john_thatcher'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="john_thatcher.htm" title="Click to see details of John Thatcher"><img src="thumbs/thatcher__john.jpg" alt="John Thatcher" /></a><p><a href="john_thatcher.htm" title="Click to see details of John Thatcher">John Thatcher</a></p><p>Fine furniture made to commission in temperate hardwoods....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'john_thatcher'; };
GEvent.addListener(markers['john_thatcher'], 'click', balloons['john_thatcher']);
map.addOverlay(markers['john_thatcher']);

markers['a_rosemary_watson'] = new GMarker(new GLatLng(53.320785, -1.527652), { title:'A. Rosemary Watson' });
balloons['a_rosemary_watson'] = function() { markers['a_rosemary_watson'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="a_rosemary_watson.htm" title="Click to see details of A. Rosemary Watson"><img src="thumbs/watson__a._rosemary.jpg" alt="A. Rosemary Watson" /></a><p><a href="a_rosemary_watson.htm" title="Click to see details of A. Rosemary Watson">A. Rosemary Watson</a></p><p>Memory: Place Time Experience Dream Drawings, paintings, pri...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'a_rosemary_watson'; };
GEvent.addListener(markers['a_rosemary_watson'], 'click', balloons['a_rosemary_watson']);
map.addOverlay(markers['a_rosemary_watson']);

markers['hanne_westergaard'] = new GMarker(new GLatLng(53.320785, -1.527352), { title:'Hanne Westergaard' });
balloons['hanne_westergaard'] = function() { markers['hanne_westergaard'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hanne_westergaard.htm" title="Click to see details of Hanne Westergaard"><img src="thumbs/westergaard__hanne.jpg" alt="Hanne Westergaard" /></a><p><a href="hanne_westergaard.htm" title="Click to see details of Hanne Westergaard">Hanne Westergaard</a></p><p>Decorative ceramics for the home and garden, made in soda/wo...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hanne_westergaard'; };
GEvent.addListener(markers['hanne_westergaard'], 'click', balloons['hanne_westergaard']);
map.addOverlay(markers['hanne_westergaard']);

markers['in_house'] = new GMarker(new GLatLng(53.320785, -1.527052), { title:'In House' });
balloons['in_house'] = function() { markers['in_house'].openInfoWindowHtml('<div class="balloon"><p><a href="in_house.htm" title="Click to see details of In House">In House</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'in_house'; };
GEvent.addListener(markers['in_house'], 'click', balloons['in_house']);
map.addOverlay(markers['in_house']);

markers['lyn_littlewood'] = new GMarker(new GLatLng(53.342344, -1.667999), { title:'Lyn Littlewood' });
balloons['lyn_littlewood'] = function() { markers['lyn_littlewood'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="lyn_littlewood.htm" title="Click to see details of Lyn Littlewood"><img src="thumbs/littlewood__lyn.jpg" alt="Lyn Littlewood" /></a><p><a href="lyn_littlewood.htm" title="Click to see details of Lyn Littlewood">Lyn Littlewood</a></p><p>Loosely painted watercolour and pastel landscapes and flower...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'lyn_littlewood'; };
GEvent.addListener(markers['lyn_littlewood'], 'click', balloons['lyn_littlewood']);
map.addOverlay(markers['lyn_littlewood']);

markers['ian_saville'] = new GMarker(new GLatLng(53.342344, -1.667699), { title:'Ian Saville' });
balloons['ian_saville'] = function() { markers['ian_saville'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ian_saville.htm" title="Click to see details of Ian Saville"><img src="thumbs/saville__ian.jpg" alt="Ian Saville" /></a><p><a href="ian_saville.htm" title="Click to see details of Ian Saville">Ian Saville</a></p><p>Award winning furniture designermaker. Contemporary bespoke ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ian_saville'; };
GEvent.addListener(markers['ian_saville'], 'click', balloons['ian_saville']);
map.addOverlay(markers['ian_saville']);

markers['greens_house_studio'] = new GMarker(new GLatLng(53.342344, -1.667399), { title:'Greens House Studio' });
balloons['greens_house_studio'] = function() { markers['greens_house_studio'].openInfoWindowHtml('<div class="balloon"><p><a href="greens_house_studio.htm" title="Click to see details of Greens House Studio">Greens House Studio</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'greens_house_studio'; };
GEvent.addListener(markers['greens_house_studio'], 'click', balloons['greens_house_studio']);
map.addOverlay(markers['greens_house_studio']);

markers['brenda_ford'] = new GMarker(new GLatLng(53.346486, -1.690739), { title:'Brenda Ford' });
balloons['brenda_ford'] = function() { markers['brenda_ford'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="brenda_ford.htm" title="Click to see details of Brenda Ford"><img src="thumbs/ford__brenda.jpg" alt="Brenda Ford" /></a><p><a href="brenda_ford.htm" title="Click to see details of Brenda Ford">Brenda Ford</a></p><p>Working with vitreous enamels for over forty years, Brenda c...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'brenda_ford'; };
GEvent.addListener(markers['brenda_ford'], 'click', balloons['brenda_ford']);
map.addOverlay(markers['brenda_ford']);

markers['jenny_mather'] = new GMarker(new GLatLng(53.346486, -1.690439), { title:'Jenny Mather' });
balloons['jenny_mather'] = function() { markers['jenny_mather'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="jenny_mather.htm" title="Click to see details of Jenny Mather"><img src="thumbs/mather__jenny.jpg" alt="Jenny Mather" /></a><p><a href="jenny_mather.htm" title="Click to see details of Jenny Mather">Jenny Mather</a></p><p>Rocky shores. Oils and watercolours painted on location in E...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'jenny_mather'; };
GEvent.addListener(markers['jenny_mather'], 'click', balloons['jenny_mather']);
map.addOverlay(markers['jenny_mather']);

markers['blackberry_barn_studio'] = new GMarker(new GLatLng(53.346486, -1.690139), { title:'Blackberry Barn Studio' });
balloons['blackberry_barn_studio'] = function() { markers['blackberry_barn_studio'].openInfoWindowHtml('<div class="balloon"><p><a href="blackberry_barn_studio.htm" title="Click to see details of Blackberry Barn Studio">Blackberry Barn Studio</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'blackberry_barn_studio'; };
GEvent.addListener(markers['blackberry_barn_studio'], 'click', balloons['blackberry_barn_studio']);
map.addOverlay(markers['blackberry_barn_studio']);

markers['les_bell'] = new GMarker(new GLatLng(53.474833, -1.483862), { title:'Les Bell' });
balloons['les_bell'] = function() { markers['les_bell'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="les_bell.htm" title="Click to see details of Les Bell"><img src="thumbs/bell__les.jpg" alt="Les Bell" /></a><p><a href="les_bell.htm" title="Click to see details of Les Bell">Les Bell</a></p><p>Figurative, abstract and still life paintings on a variety o...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'les_bell'; };
GEvent.addListener(markers['les_bell'], 'click', balloons['les_bell']);
map.addOverlay(markers['les_bell']);

markers['anthony_carroll'] = new GMarker(new GLatLng(53.474833, -1.483562), { title:'Anthony Carroll' });
balloons['anthony_carroll'] = function() { markers['anthony_carroll'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="anthony_carroll.htm" title="Click to see details of Anthony Carroll"><img src="thumbs/carroll__anthony.jpg" alt="Anthony Carroll" /></a><p><a href="anthony_carroll.htm" title="Click to see details of Anthony Carroll">Anthony Carroll</a></p><p>An eclectic mix of subjects, styles and genre in various med...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anthony_carroll'; };
GEvent.addListener(markers['anthony_carroll'], 'click', balloons['anthony_carroll']);
map.addOverlay(markers['anthony_carroll']);

markers['joanne_jenkins'] = new GMarker(new GLatLng(53.474833, -1.483262), { title:'Joanne Jenkins' });
balloons['joanne_jenkins'] = function() { markers['joanne_jenkins'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="joanne_jenkins.htm" title="Click to see details of Joanne Jenkins"><img src="thumbs/jenkins__joanne.jpg" alt="Joanne Jenkins" /></a><p><a href="joanne_jenkins.htm" title="Click to see details of Joanne Jenkins">Joanne Jenkins</a></p><p>My work explores the endeavour to capture the organic patter...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'joanne_jenkins'; };
GEvent.addListener(markers['joanne_jenkins'], 'click', balloons['joanne_jenkins']);
map.addOverlay(markers['joanne_jenkins']);

markers['coterie_gallery_and_fine_art_studio'] = new GMarker(new GLatLng(53.474833, -1.482962), { title:'Coterie Gallery and Fine Art Studio' });
balloons['coterie_gallery_and_fine_art_studio'] = function() { markers['coterie_gallery_and_fine_art_studio'].openInfoWindowHtml('<div class="balloon"><p><a href="coterie_gallery_and_fine_art_studio.htm" title="Click to see details of Coterie Gallery and Fine Art Studio">Coterie Gallery and Fine Art Studio</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'coterie_gallery_and_fine_art_studio'; };
GEvent.addListener(markers['coterie_gallery_and_fine_art_studio'], 'click', balloons['coterie_gallery_and_fine_art_studio']);
map.addOverlay(markers['coterie_gallery_and_fine_art_studio']);

markers['caroline_bell'] = new GMarker(new GLatLng(53.503054, -1.561692), { title:'Caroline Bell' });
balloons['caroline_bell'] = function() { markers['caroline_bell'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="caroline_bell.htm" title="Click to see details of Caroline Bell"><img src="thumbs/bell__caroline.jpg" alt="Caroline Bell" /></a><p><a href="caroline_bell.htm" title="Click to see details of Caroline Bell">Caroline Bell</a></p><p>Drawings and paintings interpretive landscapes as metaphor f...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'caroline_bell'; };
GEvent.addListener(markers['caroline_bell'], 'click', balloons['caroline_bell']);
map.addOverlay(markers['caroline_bell']);

markers['ann_parkin'] = new GMarker(new GLatLng(53.503054, -1.561392), { title:'Ann Parkin' });
balloons['ann_parkin'] = function() { markers['ann_parkin'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ann_parkin.htm" title="Click to see details of Ann Parkin"><img src="thumbs/parkin__ann.jpg" alt="Ann Parkin" /></a><p><a href="ann_parkin.htm" title="Click to see details of Ann Parkin">Ann Parkin</a></p><p>Wide ranging work from intimately scaled landscapes in stitc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ann_parkin'; };
GEvent.addListener(markers['ann_parkin'], 'click', balloons['ann_parkin']);
map.addOverlay(markers['ann_parkin']);

markers['28_rookery_way'] = new GMarker(new GLatLng(53.503054, -1.561092), { title:'28 Rookery Way' });
balloons['28_rookery_way'] = function() { markers['28_rookery_way'].openInfoWindowHtml('<div class="balloon"><p><a href="28_rookery_way.htm" title="Click to see details of 28 Rookery Way">28 Rookery Way</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '28_rookery_way'; };
GEvent.addListener(markers['28_rookery_way'], 'click', balloons['28_rookery_way']);
map.addOverlay(markers['28_rookery_way']);

markers['basic_arts'] = new GMarker(new GLatLng(53.428187, -1.353791), { title:'Basic Arts' });
balloons['basic_arts'] = function() { markers['basic_arts'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="basic_arts.htm" title="Click to see details of Basic Arts"><img src="thumbs/basic_arts.jpg" alt="Basic Arts" /></a><p><a href="basic_arts.htm" title="Click to see details of Basic Arts">Basic Arts</a></p><p>\'Positive Directions\'. Mainly paintings, varied subject matt...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'basic_arts'; };
GEvent.addListener(markers['basic_arts'], 'click', balloons['basic_arts']);
map.addOverlay(markers['basic_arts']);

markers['cooper_gallery'] = new GMarker(new GLatLng(53.555255, -1.481917), { title:'Cooper Gallery' });
balloons['cooper_gallery'] = function() { markers['cooper_gallery'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="cooper_gallery.htm" title="Click to see details of Cooper Gallery"><img src="thumbs/cooper_gallery.jpg" alt="Cooper Gallery" /></a><p><a href="cooper_gallery.htm" title="Click to see details of Cooper Gallery">Cooper Gallery</a></p><p>The Cooper Gallery will be hosting the South Yorkshire Open ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'cooper_gallery'; };
GEvent.addListener(markers['cooper_gallery'], 'click', balloons['cooper_gallery']);
map.addOverlay(markers['cooper_gallery']);

markers['field_studies_centre'] = new GMarker(new GLatLng(53.526371, -1.470820), { title:'Field Studies Centre' });
balloons['field_studies_centre'] = function() { markers['field_studies_centre'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="field_studies_centre.htm" title="Click to see details of Field Studies Centre"><img src="thumbs/creative_barnsley.jpg" alt="Field Studies Centre" /></a><p><a href="field_studies_centre.htm" title="Click to see details of Field Studies Centre">Field Studies Centre</a></p><p>Creative Barnsley is hosting a selection of local artists an...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'field_studies_centre'; };
GEvent.addListener(markers['field_studies_centre'], 'click', balloons['field_studies_centre']);
map.addOverlay(markers['field_studies_centre']);

markers['gemma_nemer'] = new GMarker(new GLatLng(53.495145, -1.420666), { title:'Gemma Nemer' });
balloons['gemma_nemer'] = function() { markers['gemma_nemer'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="gemma_nemer.htm" title="Click to see details of Gemma Nemer"><img src="thumbs/nemer__gemma.jpg" alt="Gemma Nemer" /></a><p><a href="gemma_nemer.htm" title="Click to see details of Gemma Nemer">Gemma Nemer</a></p><p>Scraps of memory sewn together. Colour, nostalgia, texture a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'gemma_nemer'; };
GEvent.addListener(markers['gemma_nemer'], 'click', balloons['gemma_nemer']);
map.addOverlay(markers['gemma_nemer']);

markers['elsecar_heritage_centre'] = new GMarker(new GLatLng(53.495145, -1.420366), { title:'Elsecar Heritage Centre' });
balloons['elsecar_heritage_centre'] = function() { markers['elsecar_heritage_centre'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="elsecar_heritage_centre.htm" title="Click to see details of Elsecar Heritage Centre"><img src="thumbs/creative_barnsley_2.jpg" alt="Elsecar Heritage Centre" /></a><p><a href="elsecar_heritage_centre.htm" title="Click to see details of Elsecar Heritage Centre">Elsecar Heritage Centre</a></p><p>Creative Barnsley is hosting a range of Yorkshire artists at...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'elsecar_heritage_centre'; };
GEvent.addListener(markers['elsecar_heritage_centre'], 'click', balloons['elsecar_heritage_centre']);
map.addOverlay(markers['elsecar_heritage_centre']);

markers['cb_hive'] = new GMarker(new GLatLng(53.495145, -1.420666), { title:'CB Hive' });
balloons['cb_hive'] = function() { markers['cb_hive'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="cb_hive.htm" title="Click to see details of CB Hive"><img src="thumbs/cb_hive.jpg" alt="CB Hive" /></a><p><a href="cb_hive.htm" title="Click to see details of CB Hive">CB Hive</a></p><p>CB Hive artists work in a range of media and styles. We welc...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'cb_hive'; };
GEvent.addListener(markers['cb_hive'], 'click', balloons['cb_hive']);
map.addOverlay(markers['cb_hive']);

markers['art_buddies'] = new GMarker(new GLatLng(53.567943, -1.504827), { title:'Art Buddies' });
balloons['art_buddies'] = function() { markers['art_buddies'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="art_buddies.htm" title="Click to see details of Art Buddies"><img src="thumbs/art_buddies.jpg" alt="Art Buddies" /></a><p><a href="art_buddies.htm" title="Click to see details of Art Buddies">Art Buddies</a></p><p>Eight artists offering an artistic feast; still life, nature...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'art_buddies'; };
GEvent.addListener(markers['art_buddies'], 'click', balloons['art_buddies']);
map.addOverlay(markers['art_buddies']);

markers['roger_head'] = new GMarker(new GLatLng(53.567943, -1.504527), { title:'Roger Head' });
balloons['roger_head'] = function() { markers['roger_head'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="roger_head.htm" title="Click to see details of Roger Head"><img src="thumbs/head__roger.jpg" alt="Roger Head" /></a><p><a href="roger_head.htm" title="Click to see details of Roger Head">Roger Head</a></p><p>Landscape and figurative paintings in all media, currently s...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'roger_head'; };
GEvent.addListener(markers['roger_head'], 'click', balloons['roger_head']);
map.addOverlay(markers['roger_head']);

markers['open_college_of_the_arts'] = new GMarker(new GLatLng(53.567943, -1.504227), { title:'Open College of The Arts' });
balloons['open_college_of_the_arts'] = function() { markers['open_college_of_the_arts'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="open_college_of_the_arts.htm" title="Click to see details of Open College of The Arts"><img src="thumbs/oca.jpg" alt="Open College of The Arts" /></a><p><a href="open_college_of_the_arts.htm" title="Click to see details of Open College of The Arts">Open College of The Arts</a></p><p>OCA will be participating in the Open Up Sheffield and South...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'open_college_of_the_arts'; };
GEvent.addListener(markers['open_college_of_the_arts'], 'click', balloons['open_college_of_the_arts']);
map.addOverlay(markers['open_college_of_the_arts']);

markers['pam_sandals'] = new GMarker(new GLatLng(53.534528, -1.560567), { title:'Pam Sandals' });
balloons['pam_sandals'] = function() { markers['pam_sandals'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="pam_sandals.htm" title="Click to see details of Pam Sandals"><img src="thumbs/sandals__pam.jpg" alt="Pam Sandals" /></a><p><a href="pam_sandals.htm" title="Click to see details of Pam Sandals">Pam Sandals</a></p><p>Inspired by natural forms, using handmade felt and embroider...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'pam_sandals'; };
GEvent.addListener(markers['pam_sandals'], 'click', balloons['pam_sandals']);
map.addOverlay(markers['pam_sandals']);

markers['patrick_smith'] = new GMarker(new GLatLng(53.534528, -1.560267), { title:'Patrick Smith' });
balloons['patrick_smith'] = function() { markers['patrick_smith'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="patrick_smith.htm" title="Click to see details of Patrick Smith"><img src="thumbs/smith__patrick.jpg" alt="Patrick Smith" /></a><p><a href="patrick_smith.htm" title="Click to see details of Patrick Smith">Patrick Smith</a></p><p>Hand-thrown stoneware and porcelain both large and small, pe...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'patrick_smith'; };
GEvent.addListener(markers['patrick_smith'], 'click', balloons['patrick_smith']);
map.addOverlay(markers['patrick_smith']);

markers['27_moorend_lane'] = new GMarker(new GLatLng(53.534528, -1.559967), { title:'27 Moorend Lane' });
balloons['27_moorend_lane'] = function() { markers['27_moorend_lane'].openInfoWindowHtml('<div class="balloon"><p><a href="27_moorend_lane.htm" title="Click to see details of 27 Moorend Lane">27 Moorend Lane</a></p><p>...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = '27_moorend_lane'; };
GEvent.addListener(markers['27_moorend_lane'], 'click', balloons['27_moorend_lane']);
map.addOverlay(markers['27_moorend_lane']);

markers['adam_berry'] = new GMarker(new GLatLng(53.376762, -1.466889), { title:'Adam Berry' });
balloons['adam_berry'] = function() { markers['adam_berry'].openInfoWindowHtml('<div class="balloon"><p><a href="adam_berry.htm" title="Click to see details of Adam Berry">Adam Berry</a></p><p>(Not parcipating in this year\'s Open Up event) Painting in a...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'adam_berry'; };
GEvent.addListener(markers['adam_berry'], 'click', balloons['adam_berry']);
map.addOverlay(markers['adam_berry']);

markers['anna_childs'] = new GMarker(new GLatLng(53.376762, -1.466589), { title:'Anna Childs' });
balloons['anna_childs'] = function() { markers['anna_childs'].openInfoWindowHtml('<div class="balloon"><p><a href="anna_childs.htm" title="Click to see details of Anna Childs">Anna Childs</a></p><p>(Not parcipating in this year\'s Open Up event) Furniture, ca...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'anna_childs'; };
GEvent.addListener(markers['anna_childs'], 'click', balloons['anna_childs']);
map.addOverlay(markers['anna_childs']);

markers['yorkshire_artspace_society'] = new GMarker(new GLatLng(53.376762, -1.466289), { title:'Yorkshire Artspace Society' });
balloons['yorkshire_artspace_society'] = function() { markers['yorkshire_artspace_society'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="yorkshire_artspace_society.htm" title="Click to see details of Yorkshire Artspace Society"><img src="thumbs/yorkshire_artspace.jpg" alt="Yorkshire Artspace Society" /></a><p><a href="yorkshire_artspace_society.htm" title="Click to see details of Yorkshire Artspace Society">Yorkshire Artspace Society</a></p><p>Persistence Works studio complex for visual artists and craf...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'yorkshire_artspace_society'; };
GEvent.addListener(markers['yorkshire_artspace_society'], 'click', balloons['yorkshire_artspace_society']);
map.addOverlay(markers['yorkshire_artspace_society']);

markers['graham_clark'] = new GMarker(new GLatLng(53.390238, -1.471127), { title:'Graham Clark' });
balloons['graham_clark'] = function() { markers['graham_clark'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="graham_clark.htm" title="Click to see details of Graham Clark"><img src="thumbs/clark__graham.jpg" alt="Graham Clark" /></a><p><a href="graham_clark.htm" title="Click to see details of Graham Clark">Graham Clark</a></p><p>Impressionistic and realistic styles in all media, very vers...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'graham_clark'; };
GEvent.addListener(markers['graham_clark'], 'click', balloons['graham_clark']);
map.addOverlay(markers['graham_clark']);

markers['susan_forbes'] = new GMarker(new GLatLng(53.390238, -1.470827), { title:'Susan Forbes' });
balloons['susan_forbes'] = function() { markers['susan_forbes'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="susan_forbes.htm" title="Click to see details of Susan Forbes"><img src="thumbs/forbes__susan.jpg" alt="Susan Forbes" /></a><p><a href="susan_forbes.htm" title="Click to see details of Susan Forbes">Susan Forbes</a></p><p>Fine, fibre-paper to heavy hand rolled felt, using tradition...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'susan_forbes'; };
GEvent.addListener(markers['susan_forbes'], 'click', balloons['susan_forbes']);
map.addOverlay(markers['susan_forbes']);

markers['mike_green'] = new GMarker(new GLatLng(53.390238, -1.470527), { title:'Mike Green' });
balloons['mike_green'] = function() { markers['mike_green'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="mike_green.htm" title="Click to see details of Mike Green"><img src="thumbs/green__mike.jpg" alt="Mike Green" /></a><p><a href="mike_green.htm" title="Click to see details of Mike Green">Mike Green</a></p><p>Inspired by light and colour, contemporary impressionistic l...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'mike_green'; };
GEvent.addListener(markers['mike_green'], 'click', balloons['mike_green']);
map.addOverlay(markers['mike_green']);

markers['angela_hardwick'] = new GMarker(new GLatLng(53.390238, -1.470227), { title:'Angela Hardwick' });
balloons['angela_hardwick'] = function() { markers['angela_hardwick'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="angela_hardwick.htm" title="Click to see details of Angela Hardwick"><img src="thumbs/hardwick__angela.jpg" alt="Angela Hardwick" /></a><p><a href="angela_hardwick.htm" title="Click to see details of Angela Hardwick">Angela Hardwick</a></p><p>Her work in tile and ceramic sculptures invites the viewer t...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'angela_hardwick'; };
GEvent.addListener(markers['angela_hardwick'], 'click', balloons['angela_hardwick']);
map.addOverlay(markers['angela_hardwick']);

markers['carl_hugger'] = new GMarker(new GLatLng(53.390238, -1.469927), { title:'Carl Hugger' });
balloons['carl_hugger'] = function() { markers['carl_hugger'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="carl_hugger.htm" title="Click to see details of Carl Hugger"><img src="thumbs/hugger__carl.jpg" alt="Carl Hugger" /></a><p><a href="carl_hugger.htm" title="Click to see details of Carl Hugger">Carl Hugger</a></p><p>My inspiration comes from nature and the environment we live...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'carl_hugger'; };
GEvent.addListener(markers['carl_hugger'], 'click', balloons['carl_hugger']);
map.addOverlay(markers['carl_hugger']);

markers['ali_kitley_jones'] = new GMarker(new GLatLng(53.390238, -1.469627), { title:'Ali Kitley-Jones' });
balloons['ali_kitley_jones'] = function() { markers['ali_kitley_jones'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="ali_kitley_jones.htm" title="Click to see details of Ali Kitley-Jones"><img src="thumbs/kitley-jones__ali.jpg" alt="Ali Kitley-Jones" /></a><p><a href="ali_kitley_jones.htm" title="Click to see details of Ali Kitley-Jones">Ali Kitley-Jones</a></p><p>My most recent work is abstract. Mixed media and acrylic on ...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'ali_kitley_jones'; };
GEvent.addListener(markers['ali_kitley_jones'], 'click', balloons['ali_kitley_jones']);
map.addOverlay(markers['ali_kitley_jones']);

markers['hugger_art_gallery'] = new GMarker(new GLatLng(53.390238, -1.469327), { title:'Hugger Art Gallery' });
balloons['hugger_art_gallery'] = function() { markers['hugger_art_gallery'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="hugger_art_gallery.htm" title="Click to see details of Hugger Art Gallery"><img src="thumbs/hugger_art_gallery.jpg" alt="Hugger Art Gallery" /></a><p><a href="hugger_art_gallery.htm" title="Click to see details of Hugger Art Gallery">Hugger Art Gallery</a></p><p>Find us in the Foundry Courtyard. Free tea/coffee....</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'hugger_art_gallery'; };
GEvent.addListener(markers['hugger_art_gallery'], 'click', balloons['hugger_art_gallery']);
map.addOverlay(markers['hugger_art_gallery']);

markers['barnsley_opens_up'] = new GMarker(new GLatLng(53.554201, -1.481176), { title:'Barnsley Opens Up' });
balloons['barnsley_opens_up'] = function() { markers['barnsley_opens_up'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="barnsley_opens_up.htm" title="Click to see details of Barnsley Opens Up"><img src="thumbs/barnsley_opens_up.jpg" alt="Barnsley Opens Up" /></a><p><a href="barnsley_opens_up.htm" title="Click to see details of Barnsley Opens Up">Barnsley Opens Up</a></p><p>Experience the work of over 100 artists in a range of settin...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'barnsley_opens_up'; };
GEvent.addListener(markers['barnsley_opens_up'], 'click', balloons['barnsley_opens_up']);
map.addOverlay(markers['barnsley_opens_up']);

markers['swinton_lock_activity_centre'] = new GMarker(new GLatLng(53.486580, -1.302913), { title:'Swinton Lock Activity Centre' });
balloons['swinton_lock_activity_centre'] = function() { markers['swinton_lock_activity_centre'].openInfoWindowHtml('<div class="balloon"><a class="thumb" href="swinton_lock_activity_centre.htm" title="Click to see details of Swinton Lock Activity Centre"><img src="thumbs/swinton.jpg" alt="Swinton Lock Activity Centre" /></a><p><a href="swinton_lock_activity_centre.htm" title="Click to see details of Swinton Lock Activity Centre">Swinton Lock Activity Centre</a></p><p>A fabulous display of work in the centre\'s gallery from: Pen...</p></div><div style="clear:both;line-height:0;"></div>', { maxWidth:360 }); mk = 'swinton_lock_activity_centre'; };
GEvent.addListener(markers['swinton_lock_activity_centre'], 'click', balloons['swinton_lock_activity_centre']);
map.addOverlay(markers['swinton_lock_activity_centre']);



  var i = parseInt(query.get('mk'));
  if (!isNaN(i) && i >= 0 && i < markers.length) mk = i;
  var m = query.get('mk');
  if (m && markers[m]) mk = m;
  else {
   var i = parseFloat(cookie.get('lt')); //alert([cookie.cookies.lt.value == null])
   if (!isNaN(i)) lt = i;
   var i = parseFloat(cookie.get('lg'));
   if (!isNaN(i)) lg = i;
   var m = cookie.get('mk');
   if (m && markers[m]) mk = m;
  }
  var i = parseInt(cookie.get('zf'));
  if (!isNaN(i)) zf = i;
  map.setCenter(new GLatLng(lt, lg), zf);

  if (mk !== null) {
   balloons[mk]();
   //map.setZoom(map.getZoom() + 6);
  }

  GEvent.addListener(map, 'infowindowclose', function() { mk = null; });

  register(unload, 'unload');

 }
 else {
  document.getElementById('map').innerHTML = "<p>Sorry, your browser is incompatible with Google Maps.</p>"
 }
}

register(load);

