$(function() {

	$('.box h2').append('<a href="#" style="color:white;font-family:Arial Black, sans-serif;font-size:0.7em; position:absolute; right:1em" class="hidethis">X</a>');
    $('#gallery a.showphoto').lightBox();
	
	$(".box h2 .hidethis").toggle( function (){
		$(this).parent().parent().find(".content").slideUp('fast');
		$(this).html('V');
	}, function(){
		$(this).parent().parent().find(".content").slideDown('slow');
		$(this).html('X');
	}
	);
    });
