$.ajax({
  url: "yac.en.html",
  success: function(html){
	$("#content").empty();
	$("#content").append(html);

	$("img").click(function () {
		if($(this).height() > 200)
		{
			$(this).animate({maxHeight:200}, 1500);
		}
		else
		{
			$(this).animate({maxHeight:1000}, 1500);
		}
	});
  }
});

