$(document).ready(function() {
	$('.subleftmenutable').hide();
	$('#leftmenutable tr[id].selected').each(function(){
		$(this).next().children().children().show();
		return false;
	});
	$('#leftmenutable tr[id]').click(function(){
 		if (!($(this).next().children().children().is(':visible'))) {
			if ($.browser.msie) {
				$('.subleftmenutable:visible').hide();
				$(this).next().children().children().show();
				return false;
			} else {
				$('.subleftmenutable:visible').slideUp(200);
				$(this).next().children().children().slideDown(200);
				return false;
			}
		}
	});
	$('#searchtext').focus(function(){
		if ($(this).val() == 'Поиск') {
			$(this).val('');
		};
	});
	$('#searchtext').blur(function(){
		if ($(this).val() == '') {
			$(this).val('Поиск');
		};
	});
 	$('.level2').mouseover(function(){
		//$(this).children(".menu-level3").css('top', '300px');
		$(this).children(".menu-level3").css('display', 'block');
	})
	$('.level2').mouseout(function(){
		$(this).children(".menu-level3").css('display', 'none');
	});
}
);
