$(document).ready(function() {

	$("#more div.more").hide();
	$("#more a.more").click(function() {
		$(this).next().slideToggle();
		$(this).toggleClass('open');
		return false;
	});

	$("#more div.more a.close").click(function() {
		$(this).parent().slideToggle();
		$(this).parent().prev().removeClass('open');
		return false;
	});

	$(".gallery li a").mouseover(function() {
		$("#gallery").empty().image(this.href);
	});
	$(".gallery li a").click(function() {
		return false;
	});
});