ww.admin = {
	init: function() {
		$( document ).ready( function() {
			ww.admin.addEvents( $( '#admin-menu li' ) );
		} );
	},
	addEvents: function( $node ) {
		$node
		.mouseover( function( evenet ) {
			$( this ).children( 'ul:first' ).show();
		} )
		.mouseout( function( event ) {
			$( this ).children( 'ul:first' ).hide();
		} )
		.find( 'ul' ).hide();
	}
}
