$(document).ready(function()
{	
	$('#body').find('h2:first').hide();
	var newstr = $('#news').find('.title:first').html();
	$('#head > ul.menu:not(#menu-admin)').after('<div class="news">' + newstr + '</div>');
	//$("#head > div.news > a").prepend(newstr);
	$('#index-content #body').find('div.tree-catalog').each(function(){
		var treecat = $(this).html();
		$(this).remove();
		$('#index-content #body div.text').find('h2').after('<div class="tree-catalog">' + treecat + '</div>');
	})
	var blckprcl = $('#pricelist-links');
	$('#head > ul.menu').before(blckprcl);	
	$('#pricelists-link').prepend('Скачать: ');
});
