﻿$(document).ready(function () {

    $('.toggler').bind('click', function (e) {
        e.preventDefault();

        $(this).next('.toggleDiv').toggle();
    });

});
