if (window.logged_in == false) {
	angular.element(document).ready(function () {
		setTimeout(function(){ 
			try {
				//Would be easier to use .hide()
				//Decision not using .hide() because if there is a change to ServiceNow's "window.logged_in" OOB functionality the result would be that this container DIV would be completely hidden. Instead we are just going to set the background-color to transparent
				angular.element(document.querySelector('.homepage-top-links-container.logged-in')).css('background-color', 'transparent');
			} catch(e) {
				//do not log any console messages or errors because we know they may irritate Internet Explorer
				//however we wanted to log console.log('See UI Script: hideSomeElements.js here sys_ui_script.do?sys_id=9b373e761b087704a8b2a9fe6e4bcb5f');
			}
		}, 1200);
	});
}