/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
window.addEvent('domready', function() {

            $('kalendarze_opis').getElements('.rozdzial').each(function(rozdzial){
                var opis = rozdzial.getElement('.kal_opis');
                var opis_bt = rozdzial.getElement('.opis_bt');

                opis.set('slide',{overflow: 'auto'});
		opis.slide('hide');

                opis_bt.addEvent('click', function(e) {
                            //e.stop();
                            opis.slide('toggle');
                });

            });
            
});
