$(document).ready(function() {
	$(".toggleLink").click(function() {
		$(this).next("div").slideToggle('fast');
		return false;
	});
});
