function showImage(url) {
	$('#imagedisplay *').remove();
	var img = $('<img />').attr('src', url).click(function() {
		$(this).remove();
		$("#imagedisplay").hide();
	});
	$('#imagedisplay').append(img);
	$('#imagedisplay').show();
}
function showCatalog(){
	$("#cataloglist").toggle();
}
function hideCatalog(){
	$("#cataloglist").hide();
}