$('.expand-link a').bind('click', function(e) {
	e.preventDefault();
	$(this).parent().children('div:first').toggle();
});
