jQuery(document).ready(function($) {

	// Customer Logged In OR Logged Out
	if (loggedIn) {
		$(".logged-in").show();
		$(".logged-out").hide();
	} else {
		$(".logged-in").hide();
		$(".logged-out").show();
	}

	(function($){
		var CreateListingButton = $('.profile-listings').text();
		if(CreateListingButton == 'No items found.') {
			$("#create-listing").show();
			$(".profile-listings").hide();
		} else {
			$("#create-listing").hide();
			$(".profile-listings").show();
		}
	})(jQuery);

});
