$(document).ready(function() {
	$(".thm_accordeon div.thm_accordeon-head").click(function(){
		$(this).next(".thm_accordeon div.txt").slideToggle("slow")
		.siblings(".thm_accordeon  div.txt:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("div.thm_accordeon-head").removeClass("active");
	});

	$('.thm_bbquote b').remove();
	$('.thm_bbquote').append('<b></b>');
	$('.thm_recomendations .thm_div1').html('<b class="thm_tmp1"></b><span>'+$('.thm_recomendations .thm_div1').text()+'</span><b class="thm_tmp2"></b>');
	// корректиовка меню
	var menus = $('ul.root-item');
	for (var i=0;i<menus.length;i++) {
		$(menus[i]).parent().find('a.root-item').mouseenter(function() {
			$(this).attr('style','');
		});
		$(menus[i]).mouseenter(function() {
			$(this).parent().find('a.root-item').css('background','#E61A5C');
		}).mouseleave(function() {
			$(this).parent().find('a.root-item').css('background','none');
		});
	}
});
// horizontal-multilevel-menu
