$(document).ready( function() {
    
    $('#mainnav').droppy();
    
    $('#filetree').fileTree({
      root: 'folder0',
      script: '/modules/partners/treeconnector.php',
      expandSpeed: 300,
      collapseSpeed: 300,
      multiFolder: true
    }, function(file) {
        if(file.match( /getfile/ )) {
            top.location.href='/modules/partners/download.php?what='+file;
        } else {
            top.location.href='/filesharing?what='+file;
        }
        
    });
    
    $('textarea.tinymce').tinymce({
		script_url : '/js/tinymce/jscripts/tiny_mce/tiny_mce.js',
		theme : "advanced",
        theme_advanced_toolbar_location : 'top',
        theme_advanced_buttons3 : "",
        theme_advanced_buttons1 : "bold,italic,underline,strikethrough,bullist,numlist,undo,redo,|,link,unlink,cleanup,hr,|,formatselect,charmap",
        theme_advanced_buttons3 : "",
        theme_advanced_buttons2 : "",
        theme_advanced_blockformats : "p,address,pre,h1,h2,h3,h4,h5,h6",
        theme_advanced_toolbar_align : "left"
	});
    
});

