$(document).ready(function () {
	if ($('#confirm-fade')) {
		$('#confirm-fade').fadeOut(9000);
	}
});

function redirect(page) {
	window.location.href = ROOT + page; 
}

function ajax_delete(url) {
	var row = $(this).parent('tr');
	$.ajax({
		type: "POST",
		url: ROOT + url,
		data: 'id=' + $(this).siblings('input[name="id"]').val(),
		dataType: "text",
		success: function(data) {
			if (data == '1') {
				comment_row.fadeOut();
			} else {
			}
		},
		failure: function() {
		}		
	});
}