jQuery(document).ready(function() {

	jQuery('.lettercase').click(function() {
									   
		jQuery('#about').fadeIn(200);
		return false;
		
	});
	
	jQuery('html').click(function() {
		
		jQuery('#about').fadeOut(200)
		jQuery('#about').click(function(event){
     	event.stopPropagation();
		});


	});
 						 
			
});
	


