$(document).ready(function() {

//    $('#vp_validate_start_time').html('<a onClick=validateTime("#AgendaStartTime");>Validate Start Time</a>');

    $(".toggle").click(function() {
        $(this).next().toggle(400);
        return false;
    })

    $(".addToggle").click(function() {
        $(this).next().toggle(400);
        return false;
    })

    $('.expandAllToggle').click(function() {
        $('.expandAllContent').toggle(400);
        return false;
    })
});
