        	$(function() {
			 $(this).find('.clientdescription-out').animate({ height: '35px',  opacity: '.8' }, { queue: false, duration: 500 });
        	    $('.tab_container ul li').hover(function () {
        	        $(this).find('.clientdescription-out').animate({ height: '145px',  opacity: '.8' }, { queue: false, duration: 500 });
			}, function(){
			    $(this).find('.clientdescription-out').animate({ height: '35px',  opacity: '.8' }, { queue: false, duration: 500 });
			});
		});
		$(function() {
        	    $('.tab_container ul li').hover(function () {
        	        $(this).find('.clientdescription2').animate({ height: '145px' }, { queue: false, duration: 500 });
			}, function(){
			    $(this).find('.clientdescription2').animate({ height: '35px' }, { queue: false, duration: 500 });
			});
		});
