jQuery(function($) {
	$(".projectblock").hover(
		function()
		{
			
			$(this).children(".details").animate({
				top: '-=45'
  			}, "fast");
			$(this).children(".thumbnail").animate({
				opacity: 0.6,
				top: '-=80'
  			}, "fast");
		},
		function()
		{
			$(this).children(".details").animate({
    				top: '+=45',
  			}, "fast");
			$(this).children(".thumbnail").animate({
				opacity: 1.0,
				top: '+=80'
  			}, "fast");
		}
	);
});
