// jQuery fader

$(document).ready(function(){
	
	// show feature iamges on click
	$('li#show-gallery').click(function () {
		$('#gallery-chooser').fadeIn("slow");
        });
	
	$('#close').click(function () {
		$('#gallery-chooser').fadeOut("slow");
		});

});