
(function($){

	$(document).ready(function(){
	
	
			$('UL.menu_level LI').hover(function(){
				$(this).find('SPAN.hide_line').hide()
			}, function(){
				$(this).find('SPAN.hide_line').show()
			})
			
			$('UL.menu_level LI#active').find('SPAN.hide_line').hide()
			$('UL.menu_level LI#active').hover(function(){
				$(this).find('SPAN.hide_line').hide()
			})
	
		
	})

})(jQuery)
