$( document ).ready( function() {            
    simpleTreeCollection = $( '.tree' ).simpleTree();
    
    $.ajaxSetup( {
        'type' : 'post',
    } );
    

    $( 'input[href]' ).click( function() {
        window.location.href = $( this ).attr( 'href' );
    } );
} );
