// toggle filter options 
$(document).ready(function(){
	$("p.filter_opener a").click(function(){
        $(".filter-options").toggle();
        return false;
    });
	$("a.filter_closer").click(function(){
        $(".filter-options").hide();
        return false;
    });

    // set the initial display value for the end_date
    if ($("input[name=chkMultiDay]").is(":checked")) {
        $("#trEndDate").show();
    } else {
        $("#trEndDate").hide();
    }                
    
    $("input[name=chkMultiDay]").click(function(){
        if ($(this).is(":checked")) {
            $("#trEndDate").show();
        } else {
            $("#trEndDate").hide();
        }                
    });    		

});

