$(document).ready(function() {
		
            var slide_down = 1200;
            var slide_up = 600;
            var sliderHeight = 30;

            $('#main_content_all div:not(:first)').each(function(){
                $(this).attr('style','display: block; overflow: hidden;border: 0px solid red;');

                if($(this).height() > sliderHeight+5)$(this).find('h3').prepend('<div class="fire_it"><img src="fileadmin/tpl_bilder/open.png"></div>');
                $(this).attr("box_h", $(this).height());
                $(this).css("height", sliderHeight+'px');
            });

            $('.fire_it').live('click', function(){
                var p_el = $(this).parent('h3').parent('div');
                var open_height = p_el.attr("box_h") + "px";
                p_el.animate({"height": open_height}, {duration: slide_down });
                $(this).replaceWith('<div class="fire_it_close"><img src="fileadmin/tpl_bilder/close.png"></div>');
            });

            $('.fire_it_close').live('click', function(){
                var p_el = $(this).parent('h3').parent('div');
                p_el.animate({"height": sliderHeight+'px'}, {duration: slide_up });
                $(this).replaceWith('<div class="fire_it"><img src="fileadmin/tpl_bilder/open.png"></div>');
            });



  });
