function deleteListing(url) {
    if(confirm('Delete this listing?')) {
		window.location.href = url;
	};
}

function deleteUser(url) {
    if(confirm('Delete this user?')) {
		window.location.href = url;
	};
}

function deleteMember(url) {
    if(confirm('Delete this Member?\n\nCAUTION: all listings for this member will also be deleted immediately.')) {
		window.location.href = url;
	};
}

function deleteArtist(url) {
    if(confirm('Delete this Artist?\n\nCAUTION: all listings for this artist will also be deleted immediately.')) {
		window.location.href = url;
	};
}

$(document).ready(function () {
	$('.accordion').hide();
	$('#showmore').toggle(function () {
  		$('.accordion').show();
	}, function () {
  		$('.accordion').hide();
	});
});

