$(function(){
	
	$("div.slide")
		.hide();
	
	$("div.montgomery-schedule")
		.append("<br /><a href='#' title='View Montgomery Schedule' class='show-schedule'>View Montgomery Schedule</a>");
		
	$(".show-schedule")
		.click(function(){
			$(this)
				.parent().parent().parent().parent()
				.find("div.slide")
				.slideToggle();
            return false;
		});
});
