
$(document).ready(function(){

	function setEqualHeight(container) {
		columns = container.children().filter("div");
		var tallestcolumn = 0;
		columns.each(
			function() {
				currentHeight = $(this).height();
				if(currentHeight > tallestcolumn) {
					tallestcolumn  = currentHeight;
				}
			}
		);
		container.css("min-height",tallestcolumn);
	}
	setEqualHeight($(".main-content"));
	
	var current_nav_color = $("#nav-primary .selected div").css("background-color");
	$("#breadcrumbs").css("background-color", current_nav_color);

});