function accordion_starting_page(){
    // hide all elements except the first one
    $('#FCE-Inhalt02-ContentWrapper .FCE-Fade:not(:first)').hide();
    $('#FCE-Inhalt02-ContentWrapper .FCE-Fade:first').addClass("isVisible");
    
    // set size as calculated
    /*
     * $("#FCE-Inhalt02-Text-Outer").css("height", "300px");
     * $("#FCE-Inhalt02-Antwort1Outer").css("height", "300px");
     * $("#FCE-Inhalt02-Antwort2Outer").css("height", "300px");
     * $("#FCE-Inhalt02-Antwort3Outer").css("height", "300px");
     */
    
    $('div.FCE-Title').click(function(){
	    // reset size (is set to 0px)
    	$('#FCE-Inhalt02-ContentWrapper').find(".jScrollPaneContainer").each(resetSize);
	    $('#FCE-Inhalt02-ContentWrapper').find(".Scroll").each(resetSize);
    
        // if user clicks on an already opened element => do nothing
        if ($(this).next('.FCE-Fade').hasClass("isVisible")) {
            return false;
        }
        
        var toHide = $(this).siblings(".isVisible");
        var toShow = $(this).next(".FCE-Fade");
        
        toHide.removeClass("isVisible");
        toShow.addClass("isVisible");
		
		toShow.each(resetSize);
        
        // close all opened siblings
        if ($.browser.msie) {
            // sorry, no animation for ie
            toHide.hide();
			toShow.show();
            /*
			toShow.show(1, function() {
				$(this).find(".Scroll:first").jScrollPane();
			});
			*/
        }
        else {
            // all other browser get the animation they deserve
            toHide.slideUp(1000);
			toShow.slideDown(1000);
			/*
            toShow.slideDown(1000, function() {
				$(".Scroll").jScrollPane();
			});
			*/
        }
        
        return false;
    });
}

function resetSize(){
    $(this).css("height", "200px"); /*.css("width", "574px");*/
}

















