          $(document).ready(function(){	
						$('.gridBox').hover(function(){
							$(".cover", this).animate({bottom:'0px'},{queue:false,duration:500,easing:'easeOutCirc'});
						}, function() {
							$(".cover", this).animate({bottom:'-60px'},{queue:false,duration:500,easing:'easeOutCirc'});
						});
          });

