// jQuery on DOM ready
(function($){

    // Home
    if ($('#home').length) {
        $('#country').bind('change', function() {
            window.location.href = $(this).val();
        });
    }

    // About
    if ($('#about').length) {
        $('.expandable h3').bind('click', function() {
            $(this).toggleClass('open').nextAll('.expanded, .collapsed').toggle();
        });
    }

    // FAQs
    if ($('#faq').length) {
        $('#faqs h2').bind('click', function() {
            $(this).toggleClass('open').nextAll('p').toggle();
        });
    }

})(this.jQuery);

