
 $(document).ready(function(){
	   contheight();
	   faq();
	});

  $(window).resize(function(){
		contheight();
	});

  function faq(){
	  	$(".faq .question a").click(function(){
				$(this).parents(".faq").toggleClass("f_open");
				contheight();
			});
	  }

  function contheight(){
	  lh =  $(".content .leftcol").height()-$(".content .leftcol .footerdiv").height()-10;
	  rh =  $(".content .rightcol").height();
	  if(lh<rh) {
		  	  rh=rh -$(".content .leftcol .menu").height() - 85;
		 	  $(".content .leftcol .docbody").css("height",rh+"px");
			  }
			  else $(".content .leftcol .docbody").css("height","auto");
	  }