$(document).ready(function(){
	$(".polaroid.large a").append("<span></span>");
	$(".polaroid.large a").hover(function(){
		$(this).children("span").fadeIn(600);
	},function(){
		$(this).children("span").fadeOut(200);
	});
	$("a.lb").append("<span></span>");
	$("a.lb").hover(function(){
		$(this).children("span").fadeIn(600);
	},function(){
		$(this).children("span").fadeOut(200);
	});
});