$(document).ready(function(){
	$('#navi_container').portamento({wrapper: $('body'),gap:80});

	
	$('.navi_left_item_first').find('.navi_left_dropout_first_sub:last').css('padding-bottom','20px');
	
	
	$('.navilink').each(function(){
		
		$(this).siblings('.navi_left_dropout_first').css('top',$(this).position().top);
		
		$(this).mouseover(function(){
			$(this).siblings('.navi_left_dropout_first').show();
		});	
	});
	
	$('.navi_left_item_first').mouseleave(function(){
			$(this).find('.navi_left_dropout_first').hide();
		});
		
		
	$('.navi_left_dropout_item_first').mouseenter(function(){
		$(this).find('.navi_left_dropout_second').css('top',$(this).position().top);
		$(this).find('.navi_left_dropout_second').show();
	});	
	$('.navi_left_dropout_item_first').mouseleave(function(){
		$(this).find('.navi_left_dropout_second').hide();
	});
	
	
	//Show or hide navi first sub
	$('.navi_left_dropout_item_first').mouseenter(function(){
		/*$(this).find('.navi_left_dropout_first_sub').css('top',$(this).position().top);*/
		$(this).find('.navi_left_dropout_first_sub').show();
		//$(this).find('.navi_left_dropout_first_sub').slideDown('fast');
	});	
	$('.navi_left_dropout_item_first').mouseleave(function(){
		$(this).find('.navi_left_dropout_first_sub').hide();
		//$(this).find('.navi_left_dropout_first_sub').slideUp('fast');
	});
	
	
	
	$('.navi_left_item_second').mouseenter(function(){
		$(this).find('.navi_left_dropout_second').css('top',$(this).position().top);
		$(this).find('.navi_left_dropout_second').show();
	});	
	$('.navi_left_item_second').mouseleave(function(){
		$(this).find('.navi_left_dropout_second').hide();
	});
});


