$(document).ready(function() {
                                         if ($("#sidebar").height() < $("#content").height()) {
                                                $("#sidebar").height(parseInt($("#content").css("margin-top"))+parseInt($("#content").css("margin-bottom"))+$("#content").height());
                                          } else {
                                                 $("#content").height(parseInt($("#sidebar").css("margin-top"))+parseInt($("#sidebar").css("margin-bottom"))+$("#sidebar").height());
                                         }
			});
