(function($) {
$(function() {

$('ul.header_menu').each(function() {
    $(this).find('li').each(function(i) {
      $(this).click(function(){
        $(this).addClass('active').siblings().removeClass('active')
          .parents('.block').find('.header_content').hide().end().find('.header_content:eq('+i+')').fadeIn(150);
      });
    });
  });
  $('ul.header_menu').each(function() {
    $(this).find('li').each(function(i) {
      $(this).click(function(){
        $(this).addClass('active').siblings().removeClass('active')
          .parents('.block').find('.header_map_content').hide().end().find('.header_map_content:eq('+i+')').fadeIn(150);
      });
    });
  });

})
})(jQuery)
