$(document).ready(function(){
  $(".monthlineheader").click(
    function(){
      monthid=this.id;
      $(".content_"+monthid).toggle();
      $(".bottominfo").css("top",0);
      $(".content_left_bottombg").height("auto");
      resizebg();
      contenthigh=$(".content_left_bottombg").height();
      $(".bottominfo").css("top",contenthigh-81);
      $(this).toggleClass("monthlineheader_open");
      $(this).toggleClass("monthlineheader");
    });  
    
    $(".monthlineheaderakt").click(
    function(){
      monthid=this.id;
      $(".content_"+monthid).toggle();
      $(".bottominfo").css("top",0);
      $(".content_left_bottombg").height("auto");
      resizebg();
      contenthigh=$(".content_left_bottombg").height();
      $(".bottominfo").css("top",contenthigh-81);
      $(this).toggleClass("monthlineheaderakt_closed");
      $(this).toggleClass("monthlineheaderakt");
    });    
})