$(document).ready(function() {
	$('article.fairview a.more').click(function() {
		$('article.fairview div.information').slideUp();
		$(this).parent().parent().children('div.information').slideDown();
	
		return false;
	});

});
