window.addEvent('domready', function() {
$$('.store_nav').set('target', '_blank');
var a = new Element('a', {href:'/tour'});
$$('.item.calendar ul.calendarevents span.location, .item.artistdatum ul span.location').each(function(el) {
    new_a = a.clone().set('text', el.get('text'));
    el.set('text', '');
    new_a.inject(el);
});
  
  $$('#header .navlist a.music_nav, #header .navlist a.store_nav').each(function(el) { el.set('target', '_blank'); });
});

