﻿$(function(){
	if ($(".post-content").size()>1){
		$(".post-content:gt(1)").slideUp(1000);
		//$(".post-content:first").show(800);
	}
	var firstlink = $(".post-content:first").parent().find(".post-title h1 a");
	firstlink.text(firstlink.text()+"- Link");
	$(".post-text h1 a").toggle(
		function(){
			var post_content = $(this).parent().parent().parent().find(".post-content");
			if (post_content.is(":hidden")){
				post_content.slideDown(500);
				$(this).text($(this).text()+"- Link");
			} else {
				$(this).click();
			}
		},	
		function(){
			$(this).text("给我几秒！努力加载中~");
			window.location = $(this).attr("href");
		}
	);
});