jQuery(document).ready(function () {

//jQuery('.inner').wrap('<div class="new" />');

jQuery('img', 'div.wysiwyg_container').each(function (i) {
	jq = jQuery(this);
	if (jq.hasClass('img-box-left') || jq.hasClass('img_left')) {
		jq.attr('class', '');
		jq.wrap('<ins class="img-box-left" />');
	} else if (jq.hasClass('img-box-right') || jq.hasClass('img_right')) {
		jq.attr('class', '');
		jq.wrap('<ins class="img-box-right" />');
	} else {
		jq.attr('class', '');
		jq.wrap('<ins class="img-box" />');
	}
});

jQuery('hr').replaceWith('<div class="text-decorLine"></div>');

jQuery('blockquote').each(function (i) {
	jQuery(this).replaceWith('<div class="comment"><div class="comm-decorline"></div><div class="comm-fon">' + jQuery(this).html() + '</div><div class="comm-decorline"></div></div>');
});

jQuery('div.footer').css({bottom: '177px'});

jQuery('a.lightbox').slimbox({counterText: 'Изображение {x} из {y}'});

});


