$.fn.showFeatureText = function () {
    return this.each(function () {
        var box = $(this);
        var text = $('strong', this);
        text.css({
            display: 'block',
            position: 'absolute',
            top: '0',
            left: '0'
        }).hide();
        box.hover(function () {
            text.slideDown("fast");
        }, function () {
            text.slideUp("fast");
        });
    });
}

// FAQ Accordion

$(document).ready(function () {
    $('a.faq-question').click(function () {
        $('a.faq-question').removeClass('active');
        $('div.faq-answer').slideUp('normal');
        if ($(this).next().is(':hidden') == true) {
            $(this).addClass('active');
            $(this).next().slideDown('normal');
        }
    });
    $('div.faq-answer').hide();
});
