$(document).ready(function(){
	// "bug" fix/hack where side navigation was taller than wrapper. Page background would not repeat down page correctly
	if ($("#rightColumn").height() > $("#leftColumn").height()) {
		var menuHeight = $("#rightColumn").height() + 70;
		$("#leftColumn").css( { "minHeight": menuHeight + "px" } )
		$("#leftColumn").css( { "height": menuHeight + "px" } )
	};
	
});