			 $(document).ready(function() {
			   $("div.ref_overlay").mouseover(function() {
					 $(this).parent().find(".ref_image").animate({marginTop:-20});
					 $(this).parent().find(".ref_name").animate({marginTop:150, opacity:1.0});
			   });
			   
			   $("div.ref_overlay").mouseout(function() {
					 $(this).parent().find(".ref_image").animate({marginTop:0});
					 $(this).parent().find(".ref_name").animate({marginTop:140, opacity:0.0});
			   });	   
			 });