﻿jQuery(document).ready(function () {
    jQuery(".event").click(function () {
        window.location = jQuery(this).find("a").attr("href");
    })

    jQuery(".TDLReveal").click(function () {
        jQuery(this).parent().siblings(".eventsListingsItems").slideToggle();
        return false;
    });

    jQuery("a.lightbox").lightBox();
});
