function showContent() {
	
	toggleControls();
	$("#moreContent").slideDown("slow");

}
function hideContent() {
	
	toggleControls();
	$("#moreContent").slideUp("slow");

}

function toggleControls() {
	
	$("#contentControls a").toggle();
}
