$(document).ready(function(){
	$('div.flash-gallery-instructions').hide();
	$('a.close-button').hide();
	$('a.info-button').click(function() {
		$('a.info-button').hide();
		$('a.close-button').show();
		$('div.flash-gallery-instructions').show();
		return false;
	});
	$('a.close-button').click(function() {
		$('a.close-button').hide();
		$('a.info-button').show();
		$('div.flash-gallery-instructions').hide();
		return false;
	});	
});
