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

});

