$(document).ready( function(){
	$("#topPhoto").bind('mouseover focus', function() {
		$('#topPhoto .dates').stop(true, false).animate({
			bottom: "-30px",
			opacity: 0
		}, 300, 'swing', false);
	}).bind('mouseout blur', function() {
		$('#topPhoto .dates').stop(true, false).animate({
			bottom: "0px",
			opacity: 0.5
		}, 300, 'swing', false);
	});
});

