$(document).ready(function() {

//Navigation
		
	//Select NavItem
	$('.navItem').bind('mousedown',function() {
		$(this).addClass('selected');
	});

	//Deselect NavItem
	$('.navItem').bind('mouseup mouseout',function() {
		$(this).removeClass('selected');
	});
	
	//Ignore if active
	$('.navItem.active').bind('mousedown mouseup mouseout',function() {
		$(this).removeClass('selected');
	});	


//Portfolio Expand Button

	//Hide captions on load
	$('.portCaption').hide(0);
	
	//Expand caption on click
	$('.expandButton').click(function() {
		$(this).next('.portCaption').slideToggle(750, 'easeInOutCubic');
	});
	
	
//Footer Overlay

	//Mouse Over
	$('.social').bind('mouseover',function() {
		$(this).next('.overlay').addClass('hover');
	});
	
	//Mouse Out
	$('.social').bind('mouseout',function() {
		$(this).next('.overlay').removeClass('hover');
	});
	
});
