$(document).ready(function(){
	
	$(".default").hover(
		function(){
			$(this).find('ul:first').show();
			$(this).css('z-index','2')
		},
		function(){
			$(this).find('ul:first').hide();
			$(this).css('z-index','1')
		}
	)
	
	$(".default ul").hover(
		function(){
			$(this).show();
			$(this).parents('li').css('z-index','2')
		},
		function(){
			$(this).hide();
			$(this).parents('li').css('z-index','1')
			
		}
	)

})
