
// Changes the BG loading image after the page loads
var originalOnload = window.onload;
window.onload = function() {
	setTimeout(
		function() {
			// removed the backgroundColor as it also affected/overrode the print style
            // document.body.style.backgroundColor = '#330033';
			document.body.style.backgroundImage = 'url(\'/img/pixel.gif\')';
		}, 3000);
	originalOnload();
};
