﻿/* JQuery Toggle */
$(document).ready(function () {
    $(".Toggle_Content").hide();

    $("a.toggle").click(function () {
        $(this).parent('.toggle_description').siblings('.Toggle_Content').slideToggle("slow", function () {
            if ($(this).css("display") == "block") {
                $(this).siblings('a.close_toggle').css("display", "block");
                $(this).siblings('.toggle_description').children('a.toggle').html('Close');
                
            } else {
                $(this).siblings('a.close_toggle').css("display", "none");
                $(this).siblings('.toggle_description').children('a.toggle').html('Read More');
            }
        });
        return false;
    });

    $("a.close_toggle").click(function () {
        $(this).siblings('.Toggle_Content').slideUp("slow");
        $(this).css("display", "none");
        $(this).siblings('.toggle_description').children('a.toggle').html('Read More');
        return false;
    });
});
