$(document).ready(function(){
//Скрываем подкатегории меню Подарки
$("table.cat_table:first .cat_td_head a.cat_a_head:contains('Подарки')").parents().eq(1).nextAll().each(function (i){
				if ($(this).children().is(".cat_td_tree")) {
					$(this).children().css("display", "none");
				}
				else {
				return false;
				}
			});
//Конец						
 
 
//Вешаем функции для первого и второго нажатия (раскрываем, скрываем)
 $(".cat_a_head:contains('Подарки')").toggle(
			function () {
						$(this).parent(".cat_td_head").parent("tr").nextAll("tr:has(td)").each(function (i) {
							if ($(this).children().is(".cat_td_tree")) {
								$(this).children().css("display", "block");
							}
							else {
							return false;
							}
						});
						},
	  
			function () {
				$(this).parent(".cat_td_head").parent("tr").nextAll("tr:has(td)").each(function (i) {
					if ($(this).children().is(".cat_td_tree")) {		  
					$(this).children().css("display", "none");
					}
					else {
					return false;
					}
				});
	

			});
//Конец Вешаем функции для первого и второго нажатия (раскрываем, скрываем)

  
});
