$( function( ) {
	$( "#navigation > ul > li > ul" ).not( ".selected" ).hide( );
	$( "#navigation > ul > li" ).hover( function( ) {
		$( this ).find( "ul" ).show( );
	}, function( ) {
		$( this ).find( "ul" ).not( ".selected" ).hide( );
	} );
} );
