// Once document is loaded
$(document).ready(function () {
    /******************** Testimonials View ***********************/

    $("#comment_scroller").imageScroller({
        next: "previous",
        prev: "next",
        frame: "comment_scroller_frame",
        width: 100,
        child: "a",
        auto: false
    });

    // hide all categories by default except the one
    $("#comment_scroller_frame a").each(function() {
        var block = this.name;

        if(! $(this).hasClass("opened"))
            $("#" + block).hide();
    });

    // attach a click event for all categories
    $("#comment_scroller_frame a").live("click", function() {

        $(this).siblings("a").each(function() {
            if($(this).hasClass("opened")) {
                $("#" + this.name).hide();
                $(this).removeClass("opened");
            }
        });

//        $('#scrollerFrame > a:has(".opened")').each(function() {
//            $("#" + this.name).hide();
//            $(this).removeClass("opened");
//            alert("removed");
//        });

        $("#" + this.name).show();

        $(this).addClass("opened");
    });
});