$(document).ready(function() {
	$('.boxed > h1').addClass("deschide");
	$('.boxed > h1:first-child').removeClass("deschide");
/*	$('#despreee h2:first-child').addClass("inchide");*/
	$('.boxed > h1').click(function() {
	var $this = $(this);

                if( $this.is('.inchide') ) {
                        $this.removeClass('inchide');
                        $this.addClass('deschide');
                }
                else {
                        $this.removeClass('deschide');
                        $this.addClass('inchide');
                }
		$(this).next().slideToggle();

	});

});
