var objPostTag= jQuery(".post");
var num = objPostTag.length;

var htmltext="";

function closentry(n){
	
}
function loadentry(n){
	
	  
	  var _url=jQuery(objPostTag[n]).children(".title").children("h2").children("a").attr("href");
	  
	  
	
	 tipsWindown("正在加载","text:正在加载","550","550","true","","true","text");

		jQuery(objPostTag[n]).children(".cover").children(".details").load(_url+" .post .entry",function(){

			htmltext=jQuery(objPostTag[n]).children(".cover").children(".details").html();
			tipsWindown("牛仔主义","text:" + htmltext,"550","550","true","","true","text");
		}
		);
	jQuery(objPostTag[n]).children(".cover").children(".details").hide();

}

jQuery(document).ready(function(){
		
			jQuery(objPostTag[0]).children(".cover").children(".entrytop").children(".archive-arrow").append('<span class="show" title="无刷新阅读全文" onclick="loadentry(&quot;'+0+'&quot;);">直接阅读全文</span>');	
			
  // jQuery(objPostTag[0]).children(".title").children(".archive-arrow").append('<span class="show" title="无刷新阅读全文" onclick="loadentry(&quot;'+0+'&quot;);">直接阅读全文</span>');	
			
for(a=0;a<num;a++){
	
		jQuery(objPostTag[a]).children(".cover").children(".entry1").children(".archive-arrow").append('<span class="show" title="无刷新阅读全文" onclick="loadentry(&quot;'+a+'&quot;);">直接阅读全文</span>');
	}

});



