$(document).ready(function() {
$('.hidden').hide();
// shows the hidden DIV on clicking the link with a class of "more"
$('.expand').click(function() {
	$(this).prev('.hidden').slideToggle('normal');
		return false;
	});

});