// Do stuff when the DOM is ready
$(document).ready(function () {
setTimeout( 'onDocumentReady()', 1 );
	// If the user is logged in hide all the elements with swUserLoggedOut in the class name
	// else hide the elements with swUserLoggedIn in the class name
	if ( Config.UserLoggedIn ) {
		$(".swUserLoggedIn").show();
	} else {
		$(".swUserLoggedOut").show();
	}
	
});
function onDocumentReady(){}
