$(document).ready(function(){
    $('a.del').click(function(){
    if (confirm("Вы подтверждаете удаление?")) {
	var id = $(this).attr('id').split('_');	
	$.post(app_url + 'author/delete/', {'id' : id[1],'table' : id[0]}, function(data) {});
	$(this).parent('p').parent('div').remove();
    } else {
    return false;
    }
	});
	$("#autbtn").click(function() {
    if ($("input#name").val() == "") {
    alert('Не заполнено поле "Заголовок"');
    return false;
    }
    else {
    $("form#blogform").submit();
    }
    });
});
