$(document).ready(
	function () {
		$('.top_catalog .menu .text a').each(
			function (i) {
				$(this).click(
					function () {
						$('.top_catalog .menu').children().each(
							function() {
								$(this).removeClass('active_item');
								$(this).addClass('item');
							}
						);
						$(this).parent().parent().parent().parent().parent().parent().removeClass('item');
						$(this).parent().parent().parent().parent().parent().parent().addClass('active_item');
						$('.top_catalog .items').css('display', 'none');
						$('.top_catalog #' + $(this).attr('rel')).css('display', 'block');
						return (false);
					}
				);
			}
		);
	}
);
