$.noConflict();

jQuery(document).ready(function($) {

    function initfaq() {
        $("#faqlisting p").slideUp();
        $("#faqlisting h2").click(function() {
            $(this).next().slideToggle();
            $("#faqlisting h2").not(this).next().slideUp();
        })
    }

    
    $('ul#kaart a[href][title]').qtip({
        content: { text: false },
        position: {
            corner: { target: 'topRight', tooltip: 'bottomLeft' }
        },
        style: {
            padding: 5,
            background: '#EF5200',
            color: '#5a2900',
            textAlign: 'center',
            'font-size': 18,
            'font-weight': 'bold',
            'font-family': 'Arial, Helvetica, sans-serif',
            border: {
                width: 7,
                radius: 5,
                color: '#EF5200'
            },
            tip: 'bottomLeft',
            name: 'dark'
        }
    });

    //colorbox
    $("ul.image-listing li img").colorbox({ transition: "fade", slideshow: true });
});

