$(document).ready(function(){

	// .foot-col align height - 3col in footer -
	var col = 0;
    $(".foot-col").each(function(){
        if ($(this).height() > col)
            col = $(this).height();   
    });
    $(".foot-col").height(col);
	
	// #content - #sidebar align height
	var col = 0;
    $(".height").each(function(){
        if ($(this).height() > col)
            col = $(this).height();   
    });
    $("#sidebar").height(col);

//	$("#right-col h2:first").addClass("active");
	$("#learn div").hide();
	$("#learn h2").click(function(){
	  $(this).next("div").slideToggle("slow")
	  //.siblings("div:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h2").removeClass("active");
	});
	
	$("#open-comment").click(function(){
	$("#comment-box").slideToggle("slow");
	});


});