// JavaScript Document

//Controls the height and placement of the bulitin board elements.
$(function() {
	var contentheight = $("#contentWrapper").height();
	$("#bgContent").height(contentheight - 80 + "px");
	$("#footer").css({ top: contentheight + 70 + "px" });
});

