$(document).ready(function() {

	/* DEBUG */
	$('#debug').css('opacity', 0.7);
	$('#debug').click(function() {
		height = $('#debug').height();
		if(height==20)
		$('#debug').animate({height: $('#debug ul').height()+8});
		else
		$('#debug').animate({height: 20});
		//, marginLeft: '70%'
	});

});