$(document).ready(function(){
	$('ul.exhibitions li').each(function(){
		var info = $('div.info',this);
		if($('div.note',this).hide().length > 0) {
			info.append('<a href="' + url + '#more" class="more">more info</a>').children('a.more').click(function(){
				$(this).text(($(this).text() == 'more info' ? 'less' : 'more') + ' info');
				info.parent().children('div.note').slideToggle();
			});
		}
		var img = $('img',this);
		var infoH = info.height();
		var imgH = img.height();
		if(infoH < imgH) info.css('padding-top', Math.floor((imgH - infoH) / 2) + 'px');
	});
});