<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Lee Han Joo Gallery</title>
		<link>http://leehanjoo.yogiga.com/tt/</link>
		<description>Lee Han Joo Personal Gallery</description>
		<language>ko</language>
		<pubDate>Thu, 22 Nov 2007 23:26:19 +0900</pubDate>
		<generator>Tattertools 1.0.6.1</generator>
		<item>
			<title>예전 그림 두장</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/%EC%98%88%EC%A0%84-%EA%B7%B8%EB%A6%BC-%EB%91%90%EC%9E%A5</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://leehanjoo.yogiga.com/tt&quot;; var blogURL=&quot;http://leehanjoo.yogiga.com/tt/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery291&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery291 = new TTGallery(&quot;Gallery291&quot;);Gallery291.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/3832179727.jpg&quot;, &quot;&quot;, 540, 540);Gallery291.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/8117475811.jpg&quot;, &quot;&quot;, 540, 430);Gallery291.show();&lt;/script&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/29</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/%EC%98%88%EC%A0%84-%EA%B7%B8%EB%A6%BC-%EB%91%90%EC%9E%A5#entry29comment</comments>
			<pubDate>Sun, 14 Oct 2007 23:02:22 +0900</pubDate>
		</item>
		<item>
			<title>20070924 주인을 잡아먹은 녹색고양이</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070924</link>
			<description>.&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/6526224522.jpg&quot; width=&quot;540&quot; height=&quot;540&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/27</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070924#entry27comment</comments>
			<pubDate>Mon, 24 Sep 2007 20:17:28 +0900</pubDate>
		</item>
		<item>
			<title>Horse</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/Horse</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/1195134796.jpg&quot; width=&quot;540&quot; height=&quot;365&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/1195134796.jpg&#039;)&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/26</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/Horse#entry26comment</comments>
			<pubDate>Thu, 23 Aug 2007 15:44:40 +0900</pubDate>
		</item>
		<item>
			<title>손장난</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/%EC%86%90%EC%9E%A5%EB%82%9C</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/8263518211.jpg&quot; width=&quot;540&quot; height=&quot;405&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/8263518211.jpg&#039;)&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/25</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/%EC%86%90%EC%9E%A5%EB%82%9C#entry25comment</comments>
			<pubDate>Thu, 23 Aug 2007 15:39:54 +0900</pubDate>
		</item>
		<item>
			<title>Painting</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/Painting</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/7756785343.jpg&quot; width=&quot;540&quot; height=&quot;363&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/7756785343.jpg&#039;)&quot;/&gt;&lt;/div&gt;20070822&lt;br /&gt;
Phantasian.com 사이트에서 놀아보기</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/24</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/Painting#entry24comment</comments>
			<pubDate>Wed, 22 Aug 2007 20:06:01 +0900</pubDate>
		</item>
		<item>
			<title>20070429 Experimental Concert &#039;Bulgasari&#039;</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070429-Experimental-Concert-Bulgasari</link>
			<description>&lt;center&gt;&lt;div id=&quot;jukeBox231Div&quot; style=&quot;width:250px; height:27px;&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;writeCode(getEmbedCode(&#039;/tt/script/jukebox/flash/main.swf&#039;,&#039;100%&#039;,&#039;100%&#039;,&#039;jukeBox231Flash&#039;,&#039;#FFFFFF&#039;,&quot;sounds=/tt/attach/3/8233602381.mp3*!20070429_LeeHanJoo_*&amp;amp;autoplay=0&amp;amp;visible=1&amp;amp;id=231&quot;,&quot;false&quot;))&lt;/script&gt;&lt;/div&gt;&lt;/center&gt;&lt;br /&gt;
LeeHanJoo Solo</description>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/23</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070429-Experimental-Concert-Bulgasari#entry23comment</comments>
			<pubDate>Sun, 05 Aug 2007 12:25:17 +0900</pubDate>
		</item>
		<item>
			<title>자기 음악을 세계여러나라 사람과 소통하며 자기가 판다!</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/%EC%9E%90%EA%B8%B0-%EC%9D%8C%EC%95%85%EC%9D%84-%EC%84%B8%EA%B3%84%EC%97%AC%EB%9F%AC%EB%82%98%EB%9D%BC-%EC%82%AC%EB%9E%8C%EA%B3%BC-%EC%86%8C%ED%86%B5%ED%95%98%EB%A9%B0-%EC%9E%90%EA%B8%B0%EA%B0%80-%ED%8C%90%EB%8B%A4</link>
			<description>&lt;p&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;자기 음악을 세계여러나라 사람과 소통하며 자기가 판다!&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.reverbnation.com&quot;&gt;Reverbnation.com&lt;/a&gt;을 추천합니다.&lt;/p&gt;&lt;p&gt;2002년부터 계속 꿈꿔오고 실험적으로나마 독립 뮤지션과 팬들과의 관계를 이어 질 수 있게 할 수 있는 시스템을 꾸며오던 중 이것을 발견 했습니다.&lt;br /&gt;
참 섭섭했습니다.(먼저 하다니...)&lt;br /&gt;
아직은 미국내 주소와 카드인증 등 국내에서 이 시스템을 이용해서 음악판매를 할 수는 없지만 곧 보완되겠지요.&lt;br /&gt;
많은 사이트가 있지만 현재 가장 진보된 시스템으로 Reverbnation.com이 가장 참신한 시스템으로 판단 됩니다.&lt;/p&gt;&lt;p&gt;구조적으로는 myspace.com과 매우 유사합니다.&lt;br /&gt;
하지만 이 사이트는 Music에 가장 충실하게 짜여져 있습니다.&lt;br /&gt;
각 곡의 용량은 8MB이며 마구 올릴 수 있습니다.&lt;br /&gt;
플레이 리스트 만드는것은 당연히 됩니다.&lt;br /&gt;
또한 어느 블로그던지 어느 웹사이트던지 플레이어를 삽입할 수 있는 스트리밍플레이어코드를 제공합니다.&lt;br /&gt;
뮤지션 스스로 또는 팬들이 프로모션 할 수 있습니다.&lt;br /&gt;
가장 큰 특징인 등록된 자신의 음악을 팔 수 있습니다.&lt;br /&gt;
멜론이나 대도(大盜)벅스 등과 같은 거대포탈을 이용해서 판매할 방법을 강구하지 않아도 된다는 것입니다.&lt;br /&gt;
마지막으로 아직은 서비스 안되고 있지만 레이블로 등록하여 프로모션 할 수 있습니다.&lt;br /&gt;
기존 독립 음반사와 레이블단위로 활동하고 싶은 뮤지션 그룹은 재미있게 이용할 수 있을듯합니다.&lt;br /&gt;
이러한 팬들과 뮤지션간의 유대감으로 음악을 프로모션하고 판매하는 시스템은 &lt;a href=&quot;http://www.snocap.com&quot;&gt;snocap.com&lt;/a&gt;에서 만든것으로 myspace.com도 이 시스템을 사용하고 있습니다.&lt;/p&gt;&lt;p&gt;독립뮤지션은 국내 로컬시장만을 바라보지 않고 진짜 인터내셔널 네트웍 세상에서 활동해봤으면 좋겠습니다.&lt;br /&gt;
영어문화권과 한글문화권 이 두가지만 비교해서 소통 할 수 있는 사람 수를 상상해볼 수 있지 않을까요?&lt;/p&gt;&lt;p&gt;또한 이와 더불어 &lt;a href=&quot;http://www.goodstorm.com&quot;&gt;goodstorm.com&lt;/a&gt;이라는 웹사이트는 더욱 재미 있는 사이트 인데 컨텐츠 판매 방식이 독특합니다.&lt;br /&gt;
앞서말한 reverbnation.com과 스트리밍플레이어를 통해 홍보하고 판매 할 수 있다는것은 같습니다.&lt;br /&gt;
하지만 이것은 offer라는 개념이 있습니다.&lt;br /&gt;
말하자면 중간 소매자라는 구조가 있습니다.&lt;br /&gt;
즉 판매자의 홍보력을 증가시켜주는 역할을 하겠지요.&lt;br /&gt;
당연히 중가 유통마진을 가져가는 방식이고요.&lt;br /&gt;
이쯤 말하면 &#039;이거 다단계야?&#039;라고 생각 하겠지만 엄밀히 따지면 구조는 비슷하지만 다단계가 아닌 1단계라고 볼 수 있겠죠.&lt;br /&gt;
이 또한 미국내에 주소가 있어야만 판매 할 수 있다는것이 아직 우리가 접근할 수 없지요.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
앞으로도 더 많은 네트웍을 이용한 시스템이 나올것입니다.&lt;br /&gt;
사용자와 회원확보를 통한 광고수익과 중간 유통 독점이라는 것이 IT업체의 최대 목표였습니다.&lt;br /&gt;
지금까지의 인터넷이 동호네트웍 커뮤니티였다면 앞으로는 상업적인 시스템이 도입되어 소통을 주도적인 컨텐츠 판매 수단으로 탈바꿈하고 있습니다.&lt;br /&gt;
이는 유통산업구조 변화의 증거입니다.&lt;br /&gt;
사용자들과 제공자라는 상행위의 핵심부분을 네트웍 기술이 지금까지의 근대적 집중적 시스템을 송두리채 뒤바꿔 놓을 것을 확신합니다.&lt;br /&gt;
그로 인한 독립성 및 다양성이 존중 받으며 공유해 나갈 것과 판매 될 것들이 자유롭게 소통 되기를 기대합니다.&lt;/p&gt;&lt;p&gt;안타까운것은 이것을 제가 만들고 싶었었는데 누가 먼저 해버렸다는 것이죠.^^&lt;br /&gt;
그래도 이런 시스템이 나왔다는건 참으로 반가운 일이라고 생각합니다.&lt;/p&gt;&lt;p&gt;미국내 주소가 있는 독립 뮤지션은 지금 당장 음악을 팔아 봅시다!!!&lt;/p&gt;</description>
			<category>Self Story</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/22</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/%EC%9E%90%EA%B8%B0-%EC%9D%8C%EC%95%85%EC%9D%84-%EC%84%B8%EA%B3%84%EC%97%AC%EB%9F%AC%EB%82%98%EB%9D%BC-%EC%82%AC%EB%9E%8C%EA%B3%BC-%EC%86%8C%ED%86%B5%ED%95%98%EB%A9%B0-%EC%9E%90%EA%B8%B0%EA%B0%80-%ED%8C%90%EB%8B%A4#entry22comment</comments>
			<pubDate>Sun, 29 Jul 2007 19:17:21 +0900</pubDate>
		</item>
		<item>
			<title>낙서</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/%EB%82%99%EC%84%9C</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/2647885939.jpg&quot; width=&quot;540&quot; height=&quot;398&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/2647885939.jpg&#039;)&quot;/&gt;&lt;/div&gt;낙서</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/21</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/%EB%82%99%EC%84%9C#entry21comment</comments>
			<pubDate>Sat, 28 Jul 2007 13:07:37 +0900</pubDate>
		</item>
		<item>
			<title>20070725 슈레기</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070725-%EC%8A%88%EB%A0%88%EA%B8%B0</link>
			<description>&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/6557327212.jpg&quot; width=&quot;540&quot; height=&quot;378&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/6557327212.jpg&#039;)&quot;/&gt;&lt;/div&gt;Shuregi&lt;/p&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/20</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070725-%EC%8A%88%EB%A0%88%EA%B8%B0#entry20comment</comments>
			<pubDate>Wed, 25 Jul 2007 18:42:29 +0900</pubDate>
		</item>
		<item>
			<title>20070629_Live Lee Han Joo + itta</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070629Live-Lee-Han-Joo-itta</link>
			<description>&lt;img src=&quot;http://www.reverbnation.com/widgets/buffer.gif&quot; height=&quot;4&quot; /&gt;&lt;br/&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; src=&quot;http://www.reverbnation.com/widgets/player/widgetPlayer.swf?emailPlaylist=artist_22414&amp;backgroundcolor=F6F6F6&amp;posted_by=artist_22414&amp;autoPlay=false&quot; height=&quot;228&quot; width=&quot;434&quot; wmode=&quot;opaque&quot;/&gt;&lt;br/&gt;&lt;a href=&quot;http://www.reverbnation.com/c./a4/15/22414/Artist/22414/Artist/link&quot;&gt;&lt;img alt=&quot;Lee Han Joo&quot; border=&quot;0&quot; height=&quot;19&quot; src=&quot;http://www.reverbnation.com/data_public/resource/image/15/player_footer.gif&quot; width=&quot;434&quot; /&gt;&lt;/a&gt;&lt;br/&gt;&lt;img src=&quot;http://www.reverbnation.com/widgets/buffer.gif&quot; height=&quot;4&quot; /&gt;&lt;br /&gt;
itta와 함께한 즉흥연주 &lt;br /&gt;
running time 31:00</description>
			<category>Sound Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/18</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070629Live-Lee-Han-Joo-itta#entry18comment</comments>
			<pubDate>Tue, 10 Jul 2007 13:40:08 +0900</pubDate>
		</item>
		<item>
			<title>Yogiga 실험가게의 추억1</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/Yogiga-%EC%8B%A4%ED%97%98%EA%B0%80%EA%B2%8C%EC%9D%98-%EC%B6%94%EC%96%B51</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://leehanjoo.yogiga.com/tt&quot;; var blogURL=&quot;http://leehanjoo.yogiga.com/tt/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery171&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery171 = new TTGallery(&quot;Gallery171&quot;);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9739406504.jpg&quot;, &quot;유키에형&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9653469248.jpg&quot;, &quot;유키에형&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6139712583.jpg&quot;, &quot;유키에형&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6037033456.jpg&quot;, &quot;요리중인 나&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/7699360438.jpg&quot;, &quot;요리실&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9008585257.jpg&quot;, &quot;술먹고 밥먹고&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/5591438257.jpg&quot;, &quot;자작 반짝이 조명&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/8281043689.jpg&quot;, &quot;방&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/7355747436.jpg&quot;, &quot;까만그림벽&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9670234894.jpg&quot;, &quot;그림벽&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6234473208.jpg&quot;, &quot;가게전경(찍은이 마승길)&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/1335155544.jpg&quot;, &quot;가게전경&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/3929504876.jpg&quot;, &quot;가게전경&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/5421545817.jpg&quot;, &quot;가게전경&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6419387891.jpg&quot;, &quot;밤중 가게. 영상을 틀어댄다&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9037665331.jpg&quot;, &quot;빨간뒷간(구조상 남자가 많이 불편한...)&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6134572594.jpg&quot;, &quot;빨간뒷간&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/5000648923.jpg&quot;, &quot;&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/5722474527.jpg&quot;, &quot;방 컷. 매우 어둡다.&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/4532162432.jpg&quot;, &quot;가게 내부&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9783953629.jpg&quot;, &quot;가게내부(공연하는걸 밖에 통유리로 볼 수 있다.)&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9280963448.jpg&quot;, &quot;가게 내부&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/4661438419.jpg&quot;, &quot;가게내부&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/4685484552.jpg&quot;, &quot;가게내부와 나&quot;, 405, 540);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6609743972.jpg&quot;, &quot;연주중인 사토유키에&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/8315213544.jpg&quot;, &quot;연주중인 사토유키에&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6621155233.jpg&quot;, &quot;밤중가게&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/2583376377.jpg&quot;, &quot;영상트는 가게(월드컵때 재미있었다.)&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/5438337263.jpg&quot;, &quot;밤중가게&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/8500220462.jpg&quot;, &quot;밤중가게&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/9543432876.jpg&quot;, &quot;불가사리 친구들&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/4222082712.jpg&quot;, &quot;친구 범주의 그림쑈쑈쑈!&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6240003902.jpg&quot;, &quot;그림쑈는 이렇게 보인다.&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/5547507390.jpg&quot;, &quot;그림쑈중인 범주&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/1990137051.jpg&quot;, &quot;도라비디오의 창시자 Ichiraku Yoshimitsu씨와 함게한 친구들&quot;, 540, 405);Gallery171.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/2171127767.jpg&quot;, &quot;도라비디오의 창시자 Ichiraku Yoshimitsu씨와 함게한 친구들&quot;, 540, 405);Gallery171.show();&lt;/script&gt;2004~2006년간 운영해온 조그마한 가게 하나.&lt;br /&gt;
참으로 많은 일이 있었다.&lt;br /&gt;
</description>
			<category>Self Story</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/17</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/Yogiga-%EC%8B%A4%ED%97%98%EA%B0%80%EA%B2%8C%EC%9D%98-%EC%B6%94%EC%96%B51#entry17comment</comments>
			<pubDate>Sat, 07 Jul 2007 16:37:40 +0900</pubDate>
		</item>
		<item>
			<title>Drawing in Paper 20070610</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/Drawing-in-Paper-20070610</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/8108781569.jpg&quot; width=&quot;540&quot; height=&quot;725&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;종이위의 드로잉&lt;br /&gt;
슬렁슬렁 찍찍.....</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/15</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/Drawing-in-Paper-20070610#entry15comment</comments>
			<pubDate>Mon, 02 Jul 2007 14:04:50 +0900</pubDate>
		</item>
		<item>
			<title>20070629_Live</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070629Live</link>
			<description>&lt;p&gt;요기가 갤러리에서 열린 Mikami Kan과 Nozawa Kyoji의 공연에 앞서 오프닝 공연 중&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://leehanjoo.yogiga.com/tt&quot;; var blogURL=&quot;http://leehanjoo.yogiga.com/tt/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery141&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery141 = new TTGallery(&quot;Gallery141&quot;);Gallery141.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/8785656497.jpg&quot;, &quot;&quot;, 534, 800);Gallery141.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/1835001028.jpg&quot;, &quot;&quot;, 534, 800);Gallery141.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/8871854862.jpg&quot;, &quot;&quot;, 540, 360);Gallery141.appendImage(&quot;http://leehanjoo.yogiga.com/tt/attach/3/6618647963.jpg&quot;, &quot;&quot;, 540, 360);Gallery141.show();&lt;/script&gt;&lt;/p&gt;Photo by Lee Si Hyung 20070629</description>
			<category>Sound Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/14</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070629Live#entry14comment</comments>
			<pubDate>Sun, 01 Jul 2007 20:01:27 +0900</pubDate>
		</item>
		<item>
			<title>Test Sound Suite 20070629</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/Test-Sound-Suite-20070629</link>
			<description>&lt;p&gt;여러가지 테스트 파일입니다.&lt;br /&gt;
&lt;center&gt;&lt;div id=&quot;jukeBox131Div&quot; style=&quot;width:250px; height:27px;&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;writeCode(getEmbedCode(&#039;/tt/script/jukebox/flash/main.swf&#039;,&#039;100%&#039;,&#039;100%&#039;,&#039;jukeBox131Flash&#039;,&#039;#FFFFFF&#039;,&quot;sounds=/tt/attach/3/3674298585.mp3*!20070223a_Into+the+Park_*/tt/attach/3/9321068931.mp3*!20070223b_up_*/tt/attach/3/7114471256.mp3*!20070224_Pool+Life_*/tt/attach/3/5354514078.mp3*!20070315_leehanjoo_*/tt/attach/3/8088447482.mp3*!20070319_bungle+trio_*/tt/attach/3/6937920920.mp3*!20070402_Bug_*/tt/attach/3/8231448676.mp3*!20070404_Step_*/tt/attach/3/2317444058.mp3*!20070510_Lalala_*/tt/attach/3/5763825397.mp3*!20070628_HopeToGoBack_*&amp;amp;autoplay=0&amp;amp;visible=1&amp;amp;id=131&quot;,&quot;false&quot;))&lt;/script&gt;&lt;/div&gt;&lt;/center&gt;&lt;/p&gt;</description>
			<category>Sound Artwork</category>
			<category>test sound</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/13</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/Test-Sound-Suite-20070629#entry13comment</comments>
			<pubDate>Fri, 29 Jun 2007 12:41:44 +0900</pubDate>
		</item>
		<item>
			<title>20070608-Alien</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070608-Alien</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/1724307238.jpg&quot; width=&quot;540&quot; height=&quot;540&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/12</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070608-Alien#entry12comment</comments>
			<pubDate>Thu, 28 Jun 2007 16:34:13 +0900</pubDate>
		</item>
		<item>
			<title>20070627</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20070627</link>
			<description>&lt;p&gt;&lt;center&gt;&lt;div id=&quot;jukeBox101Div&quot; style=&quot;width:250px; height:27px;&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;writeCode(getEmbedCode(&#039;/tt/script/jukebox/flash/main.swf&#039;,&#039;100%&#039;,&#039;100%&#039;,&#039;jukeBox101Flash&#039;,&#039;#FFFFFF&#039;,&quot;sounds=/tt/attach/3/1372116854.mp3*!20070627_Drop_*/tt/attach/3/1942957539.mp3*!20070627_Sunset_*&amp;amp;autoplay=0&amp;amp;visible=1&amp;amp;id=101&quot;,&quot;false&quot;))&lt;/script&gt;&lt;/div&gt;&lt;/center&gt; &lt;/p&gt;&lt;br /&gt;
</description>
			<category>Sound Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/10</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20070627#entry10comment</comments>
			<pubDate>Wed, 27 Jun 2007 17:07:56 +0900</pubDate>
		</item>
		<item>
			<title>Drawing on Canvas 200612</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/Drawing-on-Canvas-200612</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/8605038935.jpg&quot; width=&quot;540&quot; height=&quot;405&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/8605038935.jpg&#039;)&quot;/&gt;&lt;p class=&quot;cap1&quot; style=&quot;margin-top: 8px&quot;&gt;Think&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;
중국산 캔버스가 싸게 유통 되고 있어서 잔뜩 사놓고 그려보는 중입니다.&lt;br /&gt;
2호짜리에 2,000원 정도니 참으로 많이 싸졌네요.</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/8</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/Drawing-on-Canvas-200612#entry8comment</comments>
			<pubDate>Tue, 26 Jun 2007 14:20:58 +0900</pubDate>
		</item>
		<item>
			<title>SoundLayerInstallation</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/SoundLayerInstallation</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/3717375247.jpg&quot; width=&quot;540&quot; height=&quot;406&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;&lt;center&gt;&lt;div id=&quot;jukeBox62Div&quot; style=&quot;width:250px; height:27px;&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;writeCode(getEmbedCode(&#039;/tt/script/jukebox/flash/main.swf&#039;,&#039;100%&#039;,&#039;100%&#039;,&#039;jukeBox62Flash&#039;,&#039;#FFFFFF&#039;,&quot;sounds=/tt/attach/3/4753116071.mp3*!20060826+by+Lee+Han+Joo%2C+Sato+Yukie%2C+itta%2C+Song+Sun+Joo%2C+Andy+Hofmann_*/tt/attach/3/8072288313.mp3*!20060829+by+Lee+Han+Joo%2C+Park+Won+Jin_*/tt/attach/3/6674725841.mp3*!20060828+by+Hong+Shine%2C+Ma+Sung+Gil%2C+Song+Sun+Joo_*/tt/attach/3/8393773728.mp3*!20060827+by+Lee+Han+Joo_*&amp;amp;autoplay=0&amp;amp;visible=1&amp;amp;id=62&quot;,&quot;false&quot;))&lt;/script&gt;&lt;/div&gt;&lt;/center&gt;&lt;br /&gt;
제가 운영하는 &lt;a href=&quot;http://www.yogiga.com&quot;&gt;&#039;요기가 표현갤러리&#039;&lt;/a&gt; 에서 실험적으로 운영해 봤던 전시였습니다.&lt;br /&gt;
몇가지의 악기를 비치하고 Looping Station Phrase Recorder를 이용하여 누구나 직접 참여하여 소리를 쌓아 가는 형식의 전시였습니다.&lt;br /&gt;
즉, 오버더빙이 무작위, 즉흥적으로 이루어지고 한곡이 완성되는 것입니다.&lt;br /&gt;
앞으로도 이러한 작업은 계속 시도해 보려 합니다.&lt;br /&gt;
&lt;br /&gt;
이러한 시도 뿐만 아니라 다양한 실험 표현 작업은 고집센 독립 작가들과 매월 마지막주 일요일 4시에 열리는 &lt;a href=&quot;http://www.bulgasari.com&quot;&gt;&#039;실험음악회 불가사리&#039;&lt;/a&gt; 에서 정기적으로 발표하고 있습니다.&lt;br /&gt;
</description>
			<category>Sound Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/6</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/SoundLayerInstallation#entry6comment</comments>
			<pubDate>Sun, 10 Jun 2007 14:09:00 +0900</pubDate>
		</item>
		<item>
			<title>BIBIGI &amp; Imp-Sound(edit version)</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/BIBIGI-Imp-Soundedit-version</link>
			<description>&lt;p&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; width=&quot;540&quot; height=&quot;450&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.yogiga.com/hanjoo_work/player.swf&quot;&gt;&lt;!--[if !IE]&gt; &lt;--&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; transparent=&quot;yes&quot; data=&quot;http://www.yogiga.com/hanjoo_work/player.swf&quot; width=&quot;540&quot; height=&quot;450&quot;&gt;&lt;p&gt;&lt;a href=&quot;http://www.yogiga.com/hanjoo_work/player.swf&quot;&gt;Can&#039;t display this flash media&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;!--&gt; &lt;![endif]--&gt;&lt;/object&gt; &lt;/p&gt;&lt;br /&gt;
</description>
			<category>Movie Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/5</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/BIBIGI-Imp-Soundedit-version#entry5comment</comments>
			<pubDate>Sun, 29 Oct 2006 13:41:00 +0900</pubDate>
		</item>
		<item>
			<title>20061009-2</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20061009-2</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/3468563338.jpg&quot; width=&quot;540&quot; height=&quot;540&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/3468563338.jpg&#039;)&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/7</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20061009-2#entry7comment</comments>
			<pubDate>Mon, 09 Oct 2006 01:25:00 +0900</pubDate>
		</item>
		<item>
			<title>20061009</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20061004-1</link>
			<description>&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/8748093271.jpg&quot; width=&quot;540&quot; height=&quot;540&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/8748093271.jpg&#039;)&quot;/&gt;&lt;/div&gt; &lt;/p&gt;&lt;br /&gt;
</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/4</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20061004-1#entry4comment</comments>
			<pubDate>Mon, 09 Oct 2006 00:20:00 +0900</pubDate>
		</item>
		<item>
			<title>20061009-1</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20061009-1</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/2275991008.jpg&quot; width=&quot;540&quot; height=&quot;367&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/2275991008.jpg&#039;)&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/3</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20061009-1#entry3comment</comments>
			<pubDate>Mon, 09 Oct 2006 00:18:00 +0900</pubDate>
		</item>
		<item>
			<title>20061004</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/20061004</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://leehanjoo.yogiga.com/tt/attach/3/5845807330.jpg&quot; width=&quot;540&quot; height=&quot;405&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img(&#039;http://leehanjoo.yogiga.com/tt/attach/3/5845807330.jpg&#039;)&quot;/&gt;&lt;/div&gt;</description>
			<category>Graphic Artwork</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/1</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/20061004#entry1comment</comments>
			<pubDate>Wed, 04 Oct 2006 00:13:00 +0900</pubDate>
		</item>
		<item>
			<title>이한주 Resume</title>
			<link>http://leehanjoo.yogiga.com/tt/entry/%EC%9D%B4%ED%95%9C%EC%A3%BC-Resume</link>
			<description>&lt;p&gt;&lt;font color=&quot;#8e8e8e&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;이 한 주(Lee Han Joo, 李 漢 周)&lt;/font&gt;&amp;nbsp; &lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;font color=&quot;#8e8e8e&quot;&gt;&lt;font color=&quot;#333333&quot;&gt;학력&lt;/font&gt; &lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#8e8e8e&quot;&gt;1989년 홍익대학교 미술대학 시각디자인과 입학 &lt;br /&gt;
1995년 홍익대학교 미술대학 시각디자인과 졸업 &lt;br /&gt;
1995년 홍익대학교 대학원 시각디자인과 입학 &lt;br /&gt;
1998년 홍익대학교 대학원 시각디자인과 수료 &lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;font color=&quot;#8e8e8e&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;경력사항&lt;/font&gt; &lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#8e8e8e&quot;&gt;1995년 LG반도체 홍보 CD-ROM tiltle 제작 참여 &lt;br /&gt;
1995년 금강제화 &#039;데땅뜨&#039; CF Animation 1편,2편 애니메이팅, 캐릭터디자인부분 제작 참여 &lt;br /&gt;
1996년 공군 CBT System 그래픽 부분 제작 참여 &lt;br /&gt;
1996년 015B 뮤직비디오 &#039;21세기 모노리스&#039; CG 합성부분 제작 참여 &lt;br /&gt;
1996년 SK Telecom 인트라넷 사원 교육용 시스템 그래픽부분 제작 참여 &lt;br /&gt;
1996년 한국통신 대전지사 사원 교육용 시스템 그래픽부분 제작 참여 &lt;br /&gt;
1997년 한국 수출입은행 사내 네트웍 시스템 그래픽부분 제작 참여 &lt;br /&gt;
1997년 3D Animation &#039;ARK&#039;기획 및 캐릭터 디자인 참여 &lt;br /&gt;
1997년 오리온 카툰 네트웍 인형극 &#039;트랄라의 마술빵집&#039; Opening Animation 및 무대 제작 &lt;br /&gt;
1998년 서태지 뮤직비디오 &#039;TAKE TWO&#039; Animation 제작 &lt;br /&gt;
1999년 영화사 명필름 홈페이지 제작 &lt;br /&gt;
1999년 영화 &#039;해피엔드&#039;홈페이지 제작 &lt;br /&gt;
2000년 영화 &#039;섬&#039; 홈페이지 제작 &lt;br /&gt;
2000년 영화 &#039;섬&#039;OST 옴니버스 앨범 참여(Super String&#039;길&#039;) &lt;br /&gt;
2000년 영화 &#039;공동경비구역JSA&#039; 홈페이지 제작 &lt;br /&gt;
2003년 음악공연 투어 일본 후쿠오카 &lt;br /&gt;
2005년 영상&amp;amp;사운드 퍼포먼스 - 아트센터 나비 &lt;br /&gt;
2005년 기획전시 &#039;빛&#039;오프닝 공연 참여 - 국립민속박물관&lt;br /&gt;
2005년 모델에이전시 &#039;더 모델즈&#039;웹사이트 구축 &lt;a href=&quot;http://www.themodels.co.kr&quot;&gt;www.themodels.co.kr&lt;/a&gt;&lt;br /&gt;
2005년12월 국제실험예술제 Visual &amp;amp; Sound 퍼포먼스 출연 &lt;br /&gt;
2005년12월22~31일 카자흐스탄/우즈베키스탄 문화 교류 공연 참여 &lt;br /&gt;
2006년 8월 서울프린지페스티벌 오프닝 공연 참가(즉흥기타연주) &lt;br /&gt;
2006년 10월 13~15일 미디어퍼포먼스 &quot;Image2Sound展&quot; -YOGIGA표현갤러리&lt;br /&gt;
2007년 프렌차이즈 &#039;PAPPAROTI&#039;웹사이트 구축 &lt;a href=&quot;http://www.papparoti.co.kr&quot;&gt;www.papparoti.co.kr&lt;/a&gt;&lt;br /&gt;
2007년 서울국제퍼포먼스페스티벌 홈페이지 제작 &lt;a href=&quot;http://www.sipf.co.kr&quot;&gt;www.sipf.co.kr&lt;/a&gt;&lt;br /&gt;
2007년 신한 &#039;LOVE CARD&#039;마이크로사이트 Flash 부분 제작 참여&lt;br /&gt;
2007년 신경틀리닉 &#039;H.U.B Clinic&#039;웹사이트 제작 &lt;a href=&quot;http://www.hubclinic.com&quot;&gt;www.hubclinic.com&lt;/a&gt;&lt;br /&gt;
2007년 2007 한국실험예술제 홈페이지 제작 www.kopas2000.co.kr/2007keaf&lt;br /&gt;
2007년 2007 한국실험예술제 홈페이지 제작 www.kopas2000.co.kr/2007world&lt;br /&gt;
2007년 Performance 공연 &#039;Le Deux&#039; 홍보 포스터 및 팜플렛 제작&lt;br /&gt;
2007년 인천쇼육청주최 &#039;방과후학교페스티벌&#039; 전시애니메이션 및 Flash game&#039;제작&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#8e8e8e&quot;&gt;2003년4월 ~ 2004년1월 (주)에듀케이트 디자인 매니저 &lt;br /&gt;
2001년3월 ~ 2004년12월 동서울대 광고디자인과 겸임전임강사 &lt;br /&gt;
2005년3월 ~ 2005년7월 단국대학교시각디자인과 &#039;디자인 이슈&#039; 강사 &lt;br /&gt;
2005년8월 ~ 현재 건국대학교 디자인조형대학 산업디자인과 광고영상전공 강사 &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 과목명:사운드디자인 &lt;br /&gt;
2006년3월 ~ 현재 국립한경대학교 디자인학부 디지털컨텐츠전공 겸임교수 &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 과목명:애니메이션,컴퓨터그래픽기초 &lt;br /&gt;
2006년4월 ~ 2006년7월 Experimental store YOGIGA 대표 &lt;br /&gt;
2006년8월 ~ Expression Gallery YOGIGA 대표 &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 문화 공연 행사 기획 및 컨텐츠 개발 &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 매월 1~2회 실험 음악회 &#039;불가사리&#039; 기획 및 참여(2006년10월16일 현재 49회) &lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;font color=&quot;#008000&quot;&gt;Gallery : 02-3141-2603 &lt;br /&gt;
e-mail : &lt;/font&gt;&lt;a href=&quot;mailto:yogiga@paran.com&quot;&gt;&lt;font color=&quot;#008000&quot;&gt;yogiga@paran.com&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#008000&quot;&gt;Homepage : Expression Gallery YOGIGA - &lt;/font&gt;&lt;a href=&quot;http://www.yogiga.com/&quot;&gt;&lt;font color=&quot;#008000&quot;&gt;http://www.yogiga.com&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;font color=&quot;#008000&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Personal Homepage - &lt;/font&gt;&lt;a href=&quot;http://www.leehanjoo.com/&quot;&gt;&lt;font color=&quot;#008000&quot;&gt;http://www.leehanjoo.com&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;</description>
			<category>Resume</category>
			<author> (leehanjoo)</author>
			<guid>http://leehanjoo.yogiga.com/tt/2</guid>
			<comments>http://leehanjoo.yogiga.com/tt/entry/%EC%9D%B4%ED%95%9C%EC%A3%BC-Resume#entry2comment</comments>
			<pubDate>Sat, 26 Aug 2006 00:16:00 +0900</pubDate>
		</item>
	</channel>
</rss>
