$(document).ready(function(){
	
	$(".post")
		.each(function(i) {
			$(this)
				.find('.close a')
					.hide();
			$(this)
				.find(".expand a")
					.click(function(e) {
						e.preventDefault();
						$(this)
							.closest(".post")
								.find(".entry > *, .teaser span").slideDown('slow')
									.show();
						$(this)
							.closest(".post")
								.find('.close a')
									.show();
//						$(this)
//							.closest(".post")
//								.find(".teaser .thumb")
//									.hide();
						$('.tooltip')
							.hide();
						$(this)
							.hide();
			
					});
		});
	$('.post')
			.each(function(i) {
			$(this)
				.find(".close a")
					.click(function(e) {
						e.preventDefault();
						$(this)
							.closest(".post")
								.find(".entry > .postentry").slideUp('slow')
									.hide();
						$(this)
							.closest(".post")
								.find('.expand a')
									.show();
//						$(this)
//							.closest(".post")
//								.find(".teaser .thumb")
//									.hide();
						$('.tooltip')
							.hide();
						$(this)
							.hide();
					});
		});

	
	$(".like")
		.each(function(i) {
			$(this)
				.click(function(e) {
					e.preventDefault();
					var num = $(this).children('span').text();
						$(this).children('span').text(++num);
				});
		});
});

//:not(:first-child)
