/*
Description: effect of all the blog.
Author: web-ADD
Author URI: http://www.sub-273.com
Licence: LGPL
*/
$(function(){
	//Add tag to the latest article
	var newTag = "<a href=\"javascript:void(0)\" class=\"pdnow_newTag\">New</a>";
	var $paginator = $("#paginator");
	var paginatorLen = $paginator.find("table tr:first td:first strong").length;
	var pageTitleLen = $(".pagetitle").length;
	if(paginatorLen != 0 && pageTitleLen == 0){
		$("#article div.post-wrap").each(function(){
			var len = $(this).parent().find("div#post").length;
			if(!$(this).find("h1").hasClass("pdnow_top") && !len){
				$(this).find("h1.post-title").prepend(newTag);
				return false;
			}
			$("#article .post-wrap:first h1").find("a.pdnow_newTag").remove();
		});
	}
	//"toggle" of the sidebar in article page.
	var $toggleSidebar = $("#pdnow_toggleSidebar");
	$toggleSidebar.text("干掉边栏, 不留一点情面!!");
	$toggleSidebar.toggle(function(){
		$(this).text("出现吧, 侧边栏!!");
		$("#sidebar").fadeOut(250,function(){
			$("#inner").css("background","#FFF");
			$("#article").animate({width:950 + "px"},300);
		});
	},function(){
		$(this).text("干掉边栏, 不留一点情面!!");
		$("#article").animate({width:635+"px"},300,function(){
			$("#inner").css("background-color","transparent");
			$("#sidebar").show();
		});
	});
	
	//open the image of single in new window
	$("#post img").each(function(){
		$(this).click(function(){
			var srcPath = $(this).attr("src");
			window.open(srcPath);
			return false;
		});
	});
});
