$(document).ready(function() {
   
  $('#textyoutube').toggle(
   		function(){ $(this).animate({ height: "200px"}, 500);}, 
		function(){ $(this).animate({ height: "35px" }, 500);}
   );



   
   
 });

