function hide () {
	$('div#content').hide('slow');
	$('div#contentbox').html = '&nbsp;';
	return false;
}
function show (cid) {
	hide();

	$.ajax({
		type: "GET",
		url: cid,
		success: function(msg){
			$('div#contentbox').html(msg);
		}
	});
	$('div#content').show('slow');
	return false;
}

$(document).ready(function() {
	$('img#hidecontent').click(function() { hide(); });
});