$(document).ready(function(){
// Checks if #subContent exists and if it does, displays it and replaces #contentFull with #content
	if (!document.getElementById) return false;
	if (!document.getElementById("subContent")) return false;
	$('#subContent').css("display", "block");
	$('#contentFull').attr("id", "content");
// Check if we're not logged in.  If we're not, then hide #subContent and change #content back to #contentFull
	if (!document.getElementById("ctl00_MainContentArea_pnlLoggedOut")) return false;
	$('#subContent').css("display", "none");
	$('#content').attr("id", "contentFull");
});