	/*
	 *
	 *	vidoeComment
	 *
	 *	Added comment to video
	 *
	 */
	function videoComment(v_id, m_id, comment, c_id)
	{
		$.post("/ajax/videos.php", 
			{
				vid_id: v_id,
				mem_id: m_id,
				comment: comment,
				com_id: c_id,
				action: 'comment'
			}, 
			function(response) {
				$('#comment_new').hide('slow');
				$('#posted_comment').html(response.msg);
			}, 'json');

	}
	// END videoComment
