jQuery(document).ready(function init(){
	$("ul#tab_list li a").bind("click", function(){
		// Remove class active from every link
		$("ul#tab_list li a").removeClass("active");
		// Add clas active only to the clicked link
		$(this).addClass("active");
}); 
	$('.termin_box p').css("display","none");
	$('.left_col_content_btm').css("bottom","-6px");
	$('.termin_box .lead_link').click(function() {		
		$(this).toggleClass("open_link");				
  		$(this).parent().children("p").toggle('fast');		
});
});
