$(function() {
	$("#content.three div a, #content .right a").hover(
		function() {
			$(this).find(".title").animate({ 
				bottom: 0
			}, 200);
		},
		function() {
			$(this).find(".title").animate({ 
				bottom: "-24px"
			}, 200);
		}
	);
	
	$("a.inline").fancybox();
});