﻿$(document).ready(function () {

    $(".toggle_container").hide();

    $("span.trigger").toggle(function () {
        $(this).addClass("active");
    }, function () {
        $(this).removeClass("active");
    });

    $("span.trigger").click(function () {
        $(this).next(".toggle_container").slideToggle("slow,");
    });


    $(".moreToggle_container").hide();

    $("span.moreTrigger").toggle(function () {
        $(this).html("&laquo; Less");
    }, function () {
        $(this).html("More &raquo;");
    });

    $("span.moreTrigger").click(function () {
        $(this).prev(".moreToggle_container").slideToggle("slow,");
    });
});
