jQuery(document).ready(function(){ 

 jQuery(".hiding").css('bottom', '130px');

 jQuery(".trigger p").hover( 
    function () { 
      jQuery(".hiding").animate({bottom: "260px"}, {queue:false, duration: 1000, easing: 'easeInQuad'}) 
                }, 
                function () { 
     jQuery(".hiding").animate({bottom: "130px"}, {queue:false, duration: 1000, easing: 'easeInQuad'})  
    } 
  ); 


 jQuery(".hiding2").css('bottom', '130px');

 jQuery(".trigger2 p").hover( 
    function () { 
      jQuery(".hiding2").animate({bottom: "260px"}, {queue:false, duration: 1000, easing: 'easeInQuad'}) 
                }, 
                function () { 
     jQuery(".hiding2").animate({bottom: "130px"}, {queue:false, duration: 1000, easing: 'easeInQuad'})  
    } 
  ); 


});
