/**
 * Trigger a blog delete action, with removal effects
 * @function $( selector ).blog_delete()
 * @return $( selector )
 * @example 
 */
(function(){
	$.fn.blog_delete=function(w) {		
		$.post(this.attr("href"), null ,function(d) {
			location.href=window.uri;
		});
		return false;
	};
})(jQuery);
