$(document).ready(function(){var search='Поиск';if(!$('#input_search').val()){$('#input_search').val(search)}$('#submit_button').removeAttr('disabled');$('#input_search').focus(function(){if($(this).val()==search)$(this).val('')}).blur(function(){if(!$(this).val())$(this).val(search)});$('.open_tree').toggle(function(){$(this).addClass('hide_tree').parent().next('.tree_comment').hide()},function(){$(this).removeClass('hide_tree').parent().next('.tree_comment').show()});$('#comments .reply').click(function(){var id=$(this).attr('name').replace('c',''),comment=$(this).parents('.comment'),tree=$(this).parents('.comment').next();if(!tree.hasClass('tree_comment')){comment.after('<div class="tree_comment"></div>');tree=comment.next()}tree.prepend($('#form_comment'));$('#parent').val(id);return false});$('pre').highlight();$('#form_comment').submit(function(){var data=$(this).serialize();var button=$(this).find(':submit');var parent=$('#parent');button.attr('disabled','disabled');$.post('/inc/ajax.php','query=posting&'+data,function(data){if(data.indexOf('error!')>0){message(data,$('#form_comment'))}else{if(data.indexOf('moderation')>0){message('Комментарий отправлен на модерацию',$('#form_comment'))}else{message('Комментарий успешно добавлен',$('#form_comment'))}$('#comment_text').val('');if(parent.val()==0){if($('#comments').html().indexOf('no_comments')>0){$('#comments').html(data)}else{$('#comments').append(data)}}else{$('#form_comment').before(data);$('#form_comment').prev().hide().fadeIn('slow');$('#temp_form').html($('#form_comment'))}parent.val('0')}button.removeAttr('disabled')});return false})});function message(data,parent){if(!$('#status').length){parent.prepend('<div id="status"></div>')}$('#status').hide().html(data).fadeIn('fast')}
