$(document).ready(function() {
	$(".post").hide();
	$(".post:first").show();
	$(".blogs").css("overflow","hidden");
	$(".title").css("cursor","pointer").click(function() {
		$(".post").slideUp(100);
		$(this).next().slideDown(200);
	});
});