$(document).ready(function(){
  $("#text2").hide();
  $("#text3").hide();
 

 
 $("#container1").hover(
      function () {
      $("#text1").slideDown(200);
       $('#container1').animate({"top": "-280px"}, 700);
      $('#text1').animate({"top": "120px"}, 400);
        $('#plus1').fadeTo("slow", 0);
       $('#container_a').height(600);
    
      }, 
      function () {
       $("#text1").slideUp(300);
        $('#container1').animate({"top": "0px"}, 700); 
        $('#plus1').fadeTo("slow", 1);
         $('#container_a').height(0);
         $('#container1').height(0);
       
      }

    );
    
    $("#container2").hover(
      function () {
       $("#text2").slideDown(200);
       $('#container2').animate({"top": "-280px"}, 700);
      $('#text2').animate({"top": "120px"}, 400);
        $('#plus2').fadeTo("slow", 0);
       $('#container_b').height(600);
      
      
      }, 
      function () {
      $("#text2").slideUp(300);
        $('#container2').animate({"top": "0px"}, 700); 
        $('#plus2').fadeTo("slow", 1);
        $('#container_b').height(0);
         $('#container2').height(0);
       
      }

    );
    
     $("#container3").hover(
      function () {
       $("#text3").slideDown(200);
       $('#container3').animate({"top": "-280px"}, 700);
      $('#text3').animate({"top": "120px"}, 400);
        $('#plus3').fadeTo("slow", 0);
       $('#container_c').height(600);
      
      
      }, 
      function () {
         $("#text3").slideUp(300);
          $('#container3').animate({"top": "0px"}, 700); 
        $('#plus3').fadeTo("slow", 1);
         $('#container_c').height(0);
         $('#container3').height(0);
       
      }

    );
    
     $("#container4").hover(
      function () {
       $("#text4").slideDown(200);
       $('#container4').animate({"top": "-280px"}, 700);
      $('#text4').animate({"top": "120px"}, 400);
        $('#plus4').fadeTo("slow", 0);
       $('#container_d').height(600);
      
      
      }, 
      function () {
         $("#text4").slideUp(300);
          $('#container4').animate({"top": "0px"}, 700); 
        $('#plus4').fadeTo("slow", 1);
         $('#container_d').height(0);
         $('#container4').height(0);
       
      }

    );

 
});
 
