$(function(){
	// $(".post").addClass("collapsed");
	// 
	// $(".post").click(function(){
	// 	$(this).toggleClass("collapsed");
	// });
	$(".entry").hide();

	$(".post").click(function(){
		$(this).children(".entry").slideToggle();
		// return false;
	});
	$.getJSON("https://twitter.com/statuses/user_timeline/gusst250.json", function(data){
		alert("sdf");
		// $("#tweets").html("<p>Got something!");
	});
});
