$(document).ready(function() {


	$(".title a").click(function(){

		var topLevel = this.parentNode;
		var button = this.parentNode;

		$(topLevel).next('div.info').slideToggle('medium');
		$(this).toggle();
		$(this).siblings('a').toggle();

	return false;
	});

});
