  $(document).ready(function(){

  //LEGEND
  //show specifications
  $('#googlemaps_legend ul li.legend_main span').click(function(){
    if ($(this).parent('li').children('ul').hasClass('hide')){
      $(this).parent('li').children('ul').removeClass('hide');
      $(this).parent('li').addClass('active');
    } else {
      $(this).parent('li').children('ul').addClass('hide');
      $(this).parent('li').removeClass('active');
    }
  });

  $('#googlemaps_legend ul li ul li.legend_spec').click(function(){
    if ($(this).hasClass('clicked')){
      $(this).removeClass('clicked');
    } else {
      $(this).addClass('clicked');
    }
  });
  //LEGEND END

  $('div.listelement a.listelement_map_opener').click(function(){
    openGoogleMaps();
    scrollTo($('#map_wrapper'));
  });
  $('a.teaser_map_open').click(function(){
    openGoogleMaps();
    scrollTo($('#map_wrapper'));
  });
});
