$(document).ready(function() {
	$('.menu_hv_div').each(function() {
		$(this).css('z-index', '100');
	});
	
	$('span.menu_hv').hover(function() {
		$(this).css('z-index', '100');
		getNum = $(this).attr('id').substr(1, 1);
		$('.adsBan').hide();
		$('#menu'+getNum).show();
	}, function() {
		getNum = $(this).attr('id').substr(1, 1);
		$('#menu'+getNum).hide();
		$('.adsBan').show();
	});
	$('.menu_hv_div').hover(function() {
		$(this).show();
		$('.adsBan').hide();
	}, function() {
		$(this).fadeOut();
		$('.adsBan').show();
	});
	$('.menu_hv_div').hide();
	$('.menu_hv_div ul li ul').hide();
	$('.menu_hv_div ul li').hover(function() {
		$(this).find('ul').show();
	}, function() {
		$(this).find('ul').hide();
	});
});