var hax = 0;

$(document).ready( function() {
    $( '.menuH' ).toggle(
    	function() {
	        if( $( this ).parent( 'div #menuDefault' ) && hax == 0 )
	        {
	            hax = 1;
	        }
	        else
	        {
	            // no links here
	            speed = 100 * $( this ).parent( 'div' ).children( '.menuC' ).children( 'a' ).size();
	            $( this ).parent( 'div' ).children( '.menuC' ).slideDown( speed );
	        }
	        return false;
	    },
	    function() {
	        speed = 100 * $( this ).parent( 'div' ).children( '.menuC' ).children( 'a' ).size();
	        $( this ).parent( 'div' ).children( '.menuC' ).slideUp( speed );
	        return false;
	    }
    );

    // toggle the default expanded menu
    $( '#menuDefault' ).children( '.menuH' ).click();
    
} );