$(function()
{
	// Détection de session
	var user_id = unescape($.cookie('cowblog_user'));
	
	if(user_id == author) {	
		$('.article').each(function()
		{
			var this_post_id = parseInt(this.id.substring(2,this.id.length));
			
			if(this_post_id >= 1) {
				$(this).find('.article-body').append('<div style="text-align:right; margin-top:10px">'+
				'<a href="http://www.cowblog.fr/post.php?&switchblog='+blog+'&id='+this_post_id+'" '+
				'onclick="window.open(this.href); return false">'+
				'<img src="http://www.cowblog.fr/plugin.php?f=fastedit/edit.png" class="fastedit-edit" alt="" /></a> '+
				'<a href="http://www.cowblog.fr/posts.php?&switchblog='+blog+'&post_id='+this_post_id+'&fastedit=1" '+
				'onclick="window.open(this.href); return false">'+
				'<img src="http://www.cowblog.fr/plugin.php?f=fastedit/delete.png" class="fastedit-delete" alt="" /></a> '+
				'</div>');
			}
		});
	}
});