$(document).ready(function(){

   $('.imgs').click(function(){
     $(this).parent().animate({ top: "0px",
      }, 300 );
     
   });
   
   $('.click-layer').click(function(){
    $(this).parent().animate({ 
     	top: "-135px",
      }, 300 );
   });
   

});