$(document).ready(function(){
	// this converts bullets & numbering to fade back from the type
	$("#container > * > li").wrapInner("<span></span>");
	
	$(".learn_more").click(function(){ 
		$("#more").slideToggle("slow", function(){
			$(".learn_more").slideUp("fast");
		});
	});
	
	//this block makes certain the footer is at the bottom of the screen
	if ($("body").height() <= $(window).height() ) {
		docHeight = $(document).height();
		headerHeight = $("#header-wrap").height();
		footerHeight = $("#footer").height();
		containerHeight = docHeight - headerHeight - footerHeight - 130; //margins
		
		$("#container").css("min-height", containerHeight);
	}
});