$(document).ready(
	function()
	{	
		$('.view-resources-view .resource .res-inner .view-data-title a').hover(
			function() {				
				$(this).parents('.resource').addClass('reshover');
				$(this).parents('.resource').children('.res-modal').fadeIn('fast');
			},
			function () {}
		);
		$('.view-resources-view .resource .res-modal').hover(function () {},
			function () {
				$(this).parents('.resource').removeClass('reshover');
				$(this).fadeOut('slow');
			}
			
		);
		
	}
);