﻿function InitJQueryFct() {

    $(document).ready(function() {
        $(".accordion h2:first").addClass("active");
        $(".accordion h3:first").addClass("active");
        $(".accordion h4:first").addClass("active");
        //$(".accordion p:not(:first)").hide();
        //$(".accordion ul:not(:first)").hide();
        $(".accordion p").hide();
        $(".accordion ul").hide();


        $(".accordion h2").click(function() {
            $(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
            $(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
            $(this).toggleClass("active");
            $(this).siblings("h2").removeClass("active");
        });


        $(".accordion h3").click(function() {
            $(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
            $(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
            $(this).toggleClass("active");
            $(this).siblings("h3").removeClass("active");
        });

        $(".accordion h4").click(function() {
            $(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
            $(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
            $(this).toggleClass("active");
            $(this).siblings("h4").removeClass("active");
        });


    });

    jQuery(function($) {
        $("a[rel^='lightbox']").slimbox({/* Put custom options here */
    }, null, function(el) {
        return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
    });

});
}





