$(document).ready(function(){
	$('a.expand').click(function(){
		if($(this).next().is(':hidden')){
			$(this).next().show();	
		} else {
			$(this).next().hide();	
		}
		return false;
	});
});