$(document).ready(function() {
	
	
	
	
	targetHeight = $(window).height() - $("#mainNav").height();
	
    if (targetHeight < 550)
    	targetHeight = 550;
    
    $(".person").height(targetHeight);
    
    $(window).resize(function()
    {
	    targetHeight = $(window).height() - $("#mainNav").height();
	        
	    if (targetHeight < 550)
	        targetHeight = 550;
	    
    	$(".person").height(targetHeight);
    });
	
	/*if ($(".person").length > 1)
	{
		animateHome();
	}*/
	
});

/*$(window).load(function () {

	$(".person").each(function(){

		if ($(this).height() > $(this).children(".personImage").first().height())
		{
			$(this).height($(this).children(".personImage").first().height());
		}
		
	});
	
});*/

function animateHome()
{
	$(".person").first().animate({marginTop: "-" + $(".person").first().height()}, 2000, "easeInOutCirc", function(){
		
		$(".person").first().appendTo("#wrapper");
		$(".person").last().css({marginTop: 0});
		
		setTimeout(function(){
			
			animateHome();
		}, 3000);
		
	});
}
