// JavaScript Document
$(function() {				   
	$('#wrapper').hide().fadeIn('slow');
	
	$('#project-header').fadeIn('slow').delay(2000).fadeOut('slow', showGallery);
	
	function showGallery() {
		$('#gallery').galleria({
			transition:'pulse',
			image_crop:true,
			image_pan:true,
			image_pan_smoothness: 12,
			preload: '3' 
		});
		$('#project-wrapper').css('visibility', 'visible');
		$('#project-wrapper').delay(200).fadeIn('slow');
	}
	
	$('.about').click(function() {
		$(this).next('h2').fadeTo('normal', 0.7);
		return false;
	});
	
	$('.close-about').click(function() {
		$(this).parent().fadeOut();
		return false;
	});
	
});	
