/************** Site credits show/hide **************/

$(function() {
	$('#credits,#credits_hide').hide();
	$('#credits_show').click(function() {
		$('#credits').slideDown();
		$(this).hide();
		$('#credits_hide').show();
		return false;		
	});
	$('#credits_hide').click(function() {
		$('#credits').slideUp();
		$(this).hide();
		$('#credits_show').show();
		return false;		
	});
});