jQuery( document ).ready( function() {

	jQuery( '.block-navigation ul.level1' ).hide().parent().hover( function() {
		
		jQuery( this ).children( 'ul' ).show();
	}, function() {
		jQuery( this ).children( 'ul' ).hide();
	} );
	

} );


