$(document).ready(function($) {
	
	$('body').addClass('jsEnabled');
	
	
	if (jQuery().MultiFile) {
		$(".forum.messages form.add_files input[type='file']").MultiFile({
			STRING: { remove:'Удалить', duplicate:'$file уже выбран!' }
		});
		
		$('#forumform_file').MultiFile({
			STRING: { remove:'Удалить', duplicate:'$file уже выбран!' }
		});
	}
	
	$(".forum.messages a.add_files").click(function() {
		$(this).hide();
		$($(this).attr('href')).show();
		return false;
	});
	
	if (jQuery().modalEditor) {
		$("a.modal").modalEditor();
	}
	
	
	var selectionText = '';
	$("a.quote").mouseover(function() {
		if (window.getSelection) {
			selection = window.getSelection();
		} else {
			selection = document.selection.createRange().text;
		}
		selectionText = new String(selection);
	}).click(function(e) {
		e.preventDefault();
		if (selectionText.length > 0) {
			var elem = $('#forumform_message').get(0);
			elem.value += '[quote '+$(this).attr('rel')+']'+selectionText+'[/quote]\n';
			elem.focus();
		} else {
			alert("Для цитирования выделите мышкой требуемую часть текста и щелкните по кнопке \"Цитата\"");
		}
		return false;
	});
});