$(document).ready(function() {
    var index = location.href.indexOf('&faqSearch=')
    if (index > -1) {
        var text = decodeURI(location.href.substring(index + 11));
        $('.FAQ .FAQ_Title').each(function() {
            if ($(this).text().toLowerCase() == text.toLowerCase()) {
                $(this).parent().hide().next().show();
            };
        });

    }
});