// early to rise, early to bed makes a man healthy, wealthy and dead...
$(document).ready(function(){
	$('.naviSelected').find('.cherry').show();
	
 	$('#navi li').hover(function(){
 		$(this).find('.cherry').show();
 		},
 	 	function(){ $(this).find('.cherry').hide();
 	 	$('.naviSelected').find('.cherry').show();
 	});
	
});