/*

$jq(document).ready(function(){
    //-- ACCORDION 
    // Initieel hide FAQ container
    try {
        $jq('div.toggle div.container').resetHeight(true).hide();
    } catch(error) {
        //alert(error);
    }

    //-- FAQ-entries
    try {
        $jq("div.acc").accSlider(false).find("h4:first-child").addClass("first");
        if (document.location.hash.length > 1) {
            $jq("h4#faq" + document.location.hash.replace(/\#openfaq(\d+)/i, "$1")).click();
        }
    } catch(error) {
        //alert(error);
    }
});
*/
