// õ
var animation_speed = 200;
var menu_fooldal = false;
var menu_konstrukcio = false;
var menu_termekeink = false;
var menu_mukodes = false;
var menu_kapcsolat = false;

$(document).ready(function() {
	$('#menu .inactive_t').mouseover(function() {
		if(window[$(this).parent().attr('id')]) {
			return;
		}
		window[$(this).parent().attr('id')] = true;
		$(this).parent().children('#menu .inactive').animate({'top': '-25px'}, animation_speed);
	}).mouseout(function() {
		$(this).parent().children('#menu .inactive').animate({'top': '0px'}, animation_speed, 'swing', function() {
			window[$(this).parent().attr('id')] = false;
		});
	});
});
