// JavaScript Document

$(document).ready(function() {
	
	$('#left').hide().delay(500).fadeIn(750);
	$('#right').hide().delay(1300).fadeIn(1250);
	$('.links').hide();
	$('#about').hide();
	
// Navigation


// Project Display
	
	$(".post a").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	500, 
		'speedOut'		:	500, 
		'overlayShow'	:	true,
		'titlePosition' :	'inside',
		'width'			:	1024,
		'height'		:	700,
		'centerOnScroll':	true,
		'padding'		:	5,
		'cyclic'		:	true,
		'scrolling'		:	'no',
		'autoScale'		:	true,
		'overlayColor'	:	'#000',
		'showNavArrows'	:	false,
		'showCloseButton':	false,
	});
			
// Links

	$('.social, .links').mouseenter(function(){
		$('.links').stop().fadeTo('slow', 1);
	});
	
	$('.social, .links').mouseleave(function(){
		$('.links').stop().fadeOut('fast');
	});
	
// About

	$('.about, #about').mouseenter(function(){
		$('#about').stop().fadeTo('slow', 1);
	});
	
	$('.about, #about').mouseleave(function(){
		$('#about').stop().fadeOut('fast');		
	});	
	
});
