$(function() {
	$("#topmenu a:not(:first)").each(function() {
		$(this).before("&nbsp;<span>|</span>&nbsp;");
	});


	var minHeight = Math.max($(window).height(), $(document).height());
	$("#container").css({"min-height": minHeight});
	$("#left").css({"min-height": $("#container").height() - $("#header").height()});

});
