// FADE IN CONTENT DIVS
/* In its own file because has to be called after bulletfunctions.js (This js file writes at javascript-only CSS file into the header. This CSS file sets the initial display of the content divs to "none" so that they can then be faded in after page load */
$(document).ready(function() {	
	
	$("#content-related").css('position','absolute').fadeIn(1000, function () { // fade in left sidebar
		$("#content-main").fadeIn(500, function () { // fade in main content
			$("#content-additional").fadeIn(500); // fade in right sidebar
		});
	});
	// remove absolute positioning on left sidebar
	setTimeout(function () { $(".post #content-related, .page #content-related").css('position','static') }, 1500);	
	// fix for home page
	setTimeout(function () { $(".home #content-related").css('position','absolute') }, 0);
});