$(function() {

	$(".resource-link").hover( 
		function() {
			$this = $(this);
			$this.children(".resource-mask").css({'display':'block','opacity': 0}).stop().animate({opacity: 0.69},300, function ()
			{
				$this.children(".resource-blurb").css({'display':'block','opacity': 0}).stop().animate({opacity: 1},200);	
			});
		},
		function() {
			$(this).children().css({'display':'block','opacity': 0}).stop().animate({opacity: 0},300);
			$(this).children().css({'display':'none'});
		}
	);
		
	
});
