var Comment = {
	manipulateComment: function( action, comment_ID )
	{
		if ( inFlight['commentManipulation'] )
		{
			return false;
		}

		inFlight['commentManipulation'] = true;
		var url = '/admin/blogs/'+ blog +'/comments';
		var params = 'action='+ action +'&comment_ID='+ comment_ID;

		var req = new Ajax.Request(
			url,
			{
				method: 'get',
				parameters: params,
				onComplete: function()
				{
					inFlight['commentManipulation'] = false;
					Effect.Fade( 'c'+ comment_ID, { duration: 0.3 } );
				}
			}
		);
		return false;
	}
}
