function article_change(id){
	$.ajax({
		url		:	"/article/new",
		type	: 	"POST",
		data	:	({
			id			: id,
			use_ajax	: true,
			showWindow	: true
		}),
		datatype: 'html',
		success : function(data){
			$('body').append(data);
			$("#window[name='articlewindow']").fadeIn();
		}
	})
}

