//Document Ready
//Primary Nav
$(function(){
		   
	//Sets the "Current" state on the sub nav items that point to the current page/project.
	$('a[href="' + location.pathname + '"]').addClass('current'); 
	
	/* Container Resize */
	contentResize();
	
	$(window).resize(function() {
		contentResize();
	});
	
	function contentResize(){
		if($('#internal').length > 0){
			$('#internal #contentCopy').css('minHeight', '' + ($(window).height() - 319) + 'px');//345
		}
		else if($('#home').length > 0){
			$('#home #contentCopy').css('minHeight', '' + ($(window).height() - 471) + 'px');
		}
	}
	
	//Set divider height on homepage.
	if($('#home').length > 0){
		$('#divider').height($('#copy').height());
	}
	
	
});
