	// borders on hover
	$(".fade-border").css({opacity:"0.5"});

	$("#featured li, #works li,.detail-tmb, .detail-full").hover(
		function(){
		$(this).find(".fade-border").animate({opacity:"0.9"}, 200);
		},
		function() {
		$(this).find(".fade-border").animate({opacity:"0.5"}, 200);
		}
	);