$(function() {

	// Инициализация prettyPhoto
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'facebook',
		overlay_gallery: false
	});

	// Эмуляция атрибутов vspace, hspace и border у картинок в зоне визуального редактора
	$('div.wysiwyg img[vspace]').each(function() {
		$(this).css('margin-top',parseInt($(this).attr('vspace'))+'px').css('margin-bottom',parseInt($(this).attr('vspace'))+'px');
	});
	$('div.wysiwyg img[hspace]').each(function() {
		$(this).css('margin-left',parseInt($(this).attr('hspace'))+'px').css('margin-right',parseInt($(this).attr('hspace'))+'px');
	});
	$('div.wysiwyg img[border]').each(function() {
		$(this).css('border',parseInt($(this).attr('border'))+'px solid #4C4C4C');
	});

	// Окна-ссылки на персоны
	$("a[rel^='person']").click(function() {
		var found = $(this).attr('rel').match(/^person\[(.*)\]/i);
		show_person(found[1]);
		return false;
	});
})
