/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| Scripting für www.ddim.de
| fasc | 2010-11-04
| 
| Inhaltsverzeichnis:
| - ==navigation:         Navigationsboxen klappbar machen
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

$(document).ready(function() {                              
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ==navigation */
  
  $('a.minimize').click(function() {
    var box = '#' + this.parentNode.parentNode.parentNode.id;
    
    $(box + ' .box').attr('class', 'box-hidden');
    $(box + ' .box-closed-hidden').attr('class', 'box-closed');
    
    return false;
  });
  
  $('a.maximize').click(function() {
    var box = '#' + this.parentNode.parentNode.parentNode.id;
    
    $(box + ' .box-closed').attr('class', 'box-closed-hidden');
    $(box + ' .box-hidden').attr('class', 'box');
    
    return false;
  });


  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ==boxes */

  $('.box').collapsableBox();
 
});
