base_url = '/';
path = 'music';
function static() {
  if (!window.post_container) {
    window.post_container = document.createElement('div');
    window.post_container.id = 'post_container';
  }
  this.toggle = function() {
    if (window.post_container.style.display == 'block') {
      window.post_container.style.display = 'none';
      document.getElementById('static_content').style.display = 'block';
    }
    else {
      document.getElementById('static_content').style.display = 'none';
      window.post_container.innerHTML = '';
      var container = document.getElementById('right_container');
      container.insertBefore(window.post_container, container.firstChild);
      this.form = new ajax_form('admin/' + path, window.post_container, {'action': 'edit'});
      window.post_container.style.display = 'block';
    }
  }
}
