$(document).ready(function(){
	makeCurrentNav($("#nav-img-about"));
	
	$('.toggle-post').click(function(){
		$(this).parent().next('.post').toggle("slow");
	});
	
});
