$(document).ready(function(){
    $('#btn-slide').hover(
        function() {
            $(this).find('#panel').stop(true, true); // останавливаем всю текущую анимацию
            $(this).find('#panel').slideDown("slow");
        },
        function() {
			tooltipTimeout = setTimeout('$("#panel").fadeOut("slow"); clearTimeout(tooltipTimeShow);', 300);			
            // $(this).find('#panel').fadeOut("slow");
        }
    );

    $('#btn-slide_top').hover(
        function() {
            $(this).find('#panel_top').stop(true, true); // останавливаем всю текущую анимацию
            $(this).find('#panel_top').slideDown("slow");
        },
        function() {
			tooltipTimeout = setTimeout('$("#panel_top").fadeOut("slow"); clearTimeout(tooltipTimeShow);', 300);		
            // $(this).find('#panel_top').fadeOut("slow");
        }
    );		

});
