
  $(".x1").mouseover(function() {
            $(".c1").stop(true,true).animate({ 'height':'180px' }, 300);
            $(".c4").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c2").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c3").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c5").stop(true,true).animate({ 'height':'50px' }, 300);
  });
  
  

  
  
  
  $(".x2").mouseover(function() {
            $(".c2").stop(true,true).animate({ 'height':'180px' }, 300);
            $(".c1").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c3").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c4").stop(true,true).animate({ 'height':'50px' }, 300);            
            $(".c5").stop(true,true).animate({ 'height':'50px' }, 300);
  });
  
  $(".x3").mouseover(function() {
            $(".c3").stop(true,true).animate({ 'height':'180px' }, 300);
            $(".c1").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c2").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c4").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c5").stop(true,true).animate({ 'height':'50px' }, 300);
  });
  
  $(".x4").mouseover(function() {
            $(".c4").stop(true,true).animate({ 'height':'180px' }, 300);
            $(".c1").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c2").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c3").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c5").stop(true,true).animate({ 'height':'50px' }, 300);
  });
  $(".x5").mouseover(function() {
            $(".c5").stop(true,true).animate({ 'height':'180px' }, 300);
            $(".c1").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c2").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c3").stop(true,true).animate({ 'height':'50px' }, 300);
            $(".c4").stop(true,true).animate({ 'height':'50px' }, 300);
            
  });
