$(document).ready(function () {	
	$(".contact a").eq(0).click(function() {
		$('html, body').animate({
		scrollTop: $("#weaverBio").offset().top
		}, 500);
	});
	
	$(".photo").hover(function() {
		$(".photo").each(function(){
			$(this).stop();
			$(this).animate({"opacity":".5"},200);
			$(this).find(".captions").css({"opacity":"0","top":"0px"});
		});
		$(this).stop();
		$(this).animate({"opacity":"1"},200);
		$(this).find(".captions").stop();
		$(this).find(".captions").delay(100).animate({"opacity":"1","top":"-34px"},200);	
	},
	function() {
		$(".photo").each(function(){
			$(this).stop();
			$(this).animate({"opacity":"1"},50);
		});	
		$(this).find(".captions").stop();
		$(this).find(".captions").css({"opacity":"0","top":"0px"});
	});
	
	// initiallye hide all captions
	$(".large").each(function(){
		$(this).css({"opacity":".0"})
	});
});
