var actBlock = ".menu";//класс меню

var fspeed = 300;//скорость смены цвета
var dur = 300;//скорость сладинга меню
var what;//прочие переменные
/*
jQuery(document).ready(function() {
var oheight = $(actBlock).css('height');
$(actBlock).mouseenter( function() {
$(this).stop().animate({height:doheight},800);
//$("body").stop().animate({scrollTop: 400}, 800);
}).mouseleave( function() {
$(this).stop().animate({height:oheight},500);
//$("body").stop().animate({scrollTop: 200}, 500);
});

/*$(".menu li").mouseenter( function() {
$(this).highlightFade({speed:fspeed,start:'gray',end:'aqua'});//цвет фона при наведении
}).mouseleave( function() {
$(this).highlightFade({speed:fspeed,start:'aqua',end:'gray'});//цвет фона если убрать мышь
});*/
/*
});
*/
function onoff(what){
	if($('#'+what).css('display')=="none"){$('#'+what).slideDown(dur);}
	else{$('#'+what).slideUp(dur);}
}



