$(document).ready(function(){
	$('.menu_doboz').mouseenter(function(){	$(this).find('.feher').fadeOut(); $(this).find('ul').slideDown(); });
	$('.menu_doboz').mouseleave(function(){	$(this).find('.feher').fadeIn(function(){ $(this).css('filter', 'alpha(opacity=30)') }); $(this).find('ul').slideUp(); });
	$('.almenu_doboz ul').hide();
	$('.menu_doboz').click(function(){ location.href = $(this).find('h2 a').attr('href'); });
});
