/** GUI **/
$(document).ready(function() {
	$(".tool").last().css("border-width","0").css("margin-bottom","30px");
	var h1 = $(".leftCol2").height();
	var h2 = $(".mainCol2").height();
	var h = Math.max(h1,h2);
	$(".leftCol2").css("height", h + "px");
	$(".mainCol2").css("height", h + "px");
	$(".blt").prepend("&bull;&nbsp;&nbsp;");
	h = $(".farticles").height();
	if ( h<200 ) $(".farticles").css("top",((200-h)/2) + "px");
});
/** GUI End **/
