			$(document).ready(function(){
				//Caption Sliding (Partially Hidden to Visible)
				$('.photograph.caption').hover(function(){
					$(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160}); //How high from the top when open?
				}, function() {
					$(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160}); //How high from the top when closed?
				});
			});
