<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>天空之城</title>
		<link>http://www.ifublog.com/skyecastle/</link>
		<description>雜誌人，很有內涵的生活著。如果可以，也想變成影子，在咖啡館裡自由來去。</description>
		<language>zh-CN</language>
		<pubDate>Thu, 28 Aug 2008 21:34:16 +0800</pubDate>
		<generator>Tattertools 1.0.6</generator>
		<item>
			<title>這個年紀才有夢想會不會遲</title>
			<link>http://www.ifublog.com/skyecastle/143</link>
			<description>&lt;div&gt;工作到很累的時候，我只是停下手，眼睛眨也不眨地發著牛豆。如往常般埋頭苦幹一番，今天老頭不在，工作時多了份難得的閒情，拿正牌慢條斯理。&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
伏桌發牛豆時，我想起少年期曾經想過的「夢想」。到了這個歲數，早該安定下來。嗯，這階段算是安穩，有喜歡的工作和很少的收入 ToT&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
當編采這些年，總是碰到要寫自己不喜歡的，有時簡單的太簡單，有時難的也太難。 hrm...那自己辦雜誌可好，網絡發展可真熱，辦網上雜誌也挺可行，蒐集所有我認為有意思的東西給大家看，繼續寫沒有營養的編輯手記來延續我的生活習慣，但網上雜誌要怎麼辦呢，也是頭大的問題。&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
暫時擱下大計劃工作去，構思好內容再另行通知，起碼雜誌裡會留幾個版擺貓貓上來 &amp;gt;&amp;lt; 現在最想的是養貓啊我 &amp;gt;&amp;lt;&quot;&#039;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
有誰懂網上雜誌要怎麼個辦法?&lt;/div&gt;</description>
			<category>天空私語</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/143</guid>
			<comments>http://www.ifublog.com/skyecastle/143#entry143comment</comments>
			<pubDate>Thu, 28 Aug 2008 20:53:00 +0800</pubDate>
		</item>
		<item>
			<title>這次要回味iKopi</title>
			<link>http://www.ifublog.com/skyecastle/142</link>
			<description>&lt;div&gt;忽冷忽熱的天氣，使我做什麼都不為所動，是根本不想動吧。鑑於什麼都做不好，所以趴在桌上發呆的感覺是最好的，尤其想到還有過萬個字的文稿堆等著整理的時候 ToT||| 假如你問編輯好不好做，我毫不猶豫反問一句，要真的有這份心思才好啊。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
前些天想到有個消息想在部落裡提一提(可能也只有我在關心著)，但寫來寫去總是碰不著邊，我根本是忘了。令我惆悵許久的消息是iKopi在不久前關了，我在楊言的部落看到後，接著是一股悵然若失，全馬唯一一家有吸虹式咖啡的咖啡館沒了，記憶所及我只喝過一次吸虹式咖啡。&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
2008年是我到iKopi次數最多的年份，感覺上今年的回憶不止有頭昏腦脹和不知所措的生活，還有iKopi。真的希望iKopi可以重新營業，值得回味的東西，永遠不應離開，是嗎?&lt;br /&gt;
&lt;br /&gt;
以後我還可以到哪裡喝愛爾蘭咖啡?&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
回家前特意繞去Jalan Panggung，以前習慣在大將買本書再上iKopi，如今大將搬走，咖啡館也沒了，這次只能站在樓下；下一次，我想再回到喝咖啡的地方。&lt;br /&gt;
&lt;br /&gt;
今天沒帶相機，發些舊照片，但照片有點矇。&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/skyecastle/&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;Gallery1421&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1421 = new TTGallery(&quot;Gallery1421&quot;);Gallery1421.appendImage(&quot;http://www.ifublog.com/attach/76/1007574166.jpg&quot;, &quot;&quot;, 400, 300);Gallery1421.appendImage(&quot;http://www.ifublog.com/attach/76/1090976550.jpg&quot;, &quot;&quot;, 400, 300);Gallery1421.appendImage(&quot;http://www.ifublog.com/attach/76/1304957123.jpg&quot;, &quot;&quot;, 400, 300);Gallery1421.appendImage(&quot;http://www.ifublog.com/attach/76/1209495607.jpg&quot;, &quot;&quot;, 400, 300);Gallery1421.appendImage(&quot;http://www.ifublog.com/attach/76/1099359290.jpg&quot;, &quot;&quot;, 224, 300);Gallery1421.show();&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;</description>
			<category>咖啡物語</category>
			<category>ikopi</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/142</guid>
			<comments>http://www.ifublog.com/skyecastle/142#entry142comment</comments>
			<pubDate>Tue, 26 Aug 2008 21:10:00 +0800</pubDate>
		</item>
		<item>
			<title>日記+一頓超標的晚餐</title>
			<link>http://www.ifublog.com/skyecastle/141</link>
			<description>&lt;div&gt;好久好久好久沒試過大清早就傾盆大雨了，一早吹大風的感覺就好像整個人會飄起來一樣。這幾天身心和語言都疲勞，早幾個月以來我寫了很多篇沒有營養的編輯手記，隆重宣佈新一期更加營養不良，不信你等著瞧。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
另外，風暴漸漸好轉，可以繼續為我播歌，雪花和blak blak聲也沒了，它和我一樣這幾天都在鬧情緒，怪是怪在風暴已恢復原狀，我怎可能一天比一天更滾??恍惚間，我覺得應該重組一下最近發生什麼事。我想應該是換了老師後要多考一次醫學史的關係吧，名副其實：人有壓力硬繃繃 ToT&lt;br /&gt;
&lt;br /&gt;
為了明天和接下來每一天都清閒，我提起心肝，振筆疾書地整理完一篇采訪稿，卻忘了還有第二篇第三篇第四篇在排隊等著，必須必須必須面對了。&lt;br /&gt;
&lt;br /&gt;
多勞累都好，晚餐那頓腸胃熱熱身體冷冷的「必必Q」吃得實在過癮。多久沒那麼超卡超高脂，不過沒關係，畢竟今天是值得放縱的一天。祝福和我吃晚餐的那個人，一路順風啊 ^^&lt;br /&gt;
&lt;br /&gt;
本來還想寫寫關於工作的小文，但怕悶著大家，所以改為晚餐圖片。&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/skyecastle/&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;Gallery1411&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1411 = new TTGallery(&quot;Gallery1411&quot;);Gallery1411.appendImage(&quot;http://www.ifublog.com/attach/76/1272890125.jpg&quot;, &quot;&quot;, 224, 300);Gallery1411.appendImage(&quot;http://www.ifublog.com/attach/76/1072009869.jpg&quot;, &quot;&quot;, 400, 300);Gallery1411.appendImage(&quot;http://www.ifublog.com/attach/76/1136172541.jpg&quot;, &quot;&quot;, 224, 300);Gallery1411.appendImage(&quot;http://www.ifublog.com/attach/76/1317367742.jpg&quot;, &quot;&quot;, 400, 300);Gallery1411.appendImage(&quot;http://www.ifublog.com/attach/76/1032411998.jpg&quot;, &quot;&quot;, 400, 300);Gallery1411.show();&lt;/script&gt;&lt;br /&gt;
第一次正式吃韓國餐，想必是遜了少少。不懂是不是比較喜歡日本的關係，我還是覺得壽司和Tempura比較好吃 &amp;gt;&amp;lt;&lt;/div&gt;</description>
			<category>Life is 亂玩．亂說</category>
			<category>必必Q</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/141</guid>
			<comments>http://www.ifublog.com/skyecastle/141#entry141comment</comments>
			<pubDate>Mon, 25 Aug 2008 22:33:00 +0800</pubDate>
		</item>
		<item>
			<title>別讓運氣隔夜</title>
			<link>http://www.ifublog.com/skyecastle/140</link>
			<description>&lt;div&gt;今天照樣戴著耳機邊聽歌邊寫稿，聽著浮誇時突然間滋滋作響，接著blak blak聲，這個用了很多年的風暴mp4出現雪花後燒掉了 ToT&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;為什麼偏偏播著浮誇時燒掉，難道暗示我浮誇??我才不信這種謬論。&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
努力了半小時後，風暴總算平息，但不時發出滋滋聲和飄雪花，趁它還活著時我連忙哀悼，這下可好，這時候死掉，我有足夠的理由買ipod給自己當生日禮物 ^^&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
自從昨天DBKL請吃午肉乾後，我直覺自己衰到貼地，今天又來場風暴，不如搞死我算，沒有歌聽等於殺死完我所有寫作靈感，我不如不做算 YoY|||&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
所以呢，當一個人走運時，一定要用盡它，千萬別讓運氣隔夜。而我連讓它隔夜的機會都沒有，還在默默等候運氣到來。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/skyecastle/&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;Gallery1401&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1401 = new TTGallery(&quot;Gallery1401&quot;);Gallery1401.appendImage(&quot;http://www.ifublog.com/attach/76/1360372036.jpg&quot;, &quot;臭肉乾，我撕爛你!!!&quot;, 350, 263);Gallery1401.appendImage(&quot;http://www.ifublog.com/attach/76/1102013548.jpg&quot;, &quot;你就這樣去了~~ ToT&quot;, 225, 300);Gallery1401.show();&lt;/script&gt;&lt;br /&gt;
&lt;/div&gt;</description>
			<category>天空私語</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/140</guid>
			<comments>http://www.ifublog.com/skyecastle/140#entry140comment</comments>
			<pubDate>Wed, 20 Aug 2008 18:44:00 +0800</pubDate>
		</item>
		<item>
			<title>一些雜記</title>
			<link>http://www.ifublog.com/skyecastle/139</link>
			<description>&lt;p&gt;&lt;font color=&quot;#993366&quot;&gt;(一)不該放棄夢想吧&lt;br /&gt;
&lt;/font&gt;坐在電腦前回想自己最近做了什麼。采訪，上課...&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;br /&gt;
這麼突如其來，才能體會我的用心良苦啊&lt;br /&gt;
最後我用magic colour寫下一句話：老母，再辛苦也不該叫孩子放棄夢想啊~~&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#993366&quot;&gt;(二)為何要blog&lt;br /&gt;
&lt;/font&gt;寫blog一年多，我沒有什麼特別感想&lt;br /&gt;
有時我滿腔熱誠，好多好多話要說，但寫起來卻滿目瘡痍，嘿嘿...&lt;br /&gt;
當別人問，做莫要寫blog&lt;br /&gt;
這句話總使我聯想到，生存做莫一定要不斷呼吸&lt;br /&gt;
對於blogger，生活和寫blog彷彿是一條線，兩者息息相關，不可或缺&lt;br /&gt;
就如生活與呼吸那樣，自然又必要&lt;br /&gt;
我可能還沒到這種境界，但寫下寫下也難保會和自己的blog日久生情&lt;br /&gt;
不管寫得好不好，簡潔或囉嗦，都是我要表達的，人總難面面俱到吧&lt;br /&gt;
至少寫blog已成了我生活的一部分&lt;br /&gt;
我和我的blog，在互相挑逗啊~~&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;&lt;/p&gt;&lt;div align=&quot;center&quot;&gt;&lt;font color=&quot;#993366&quot;&gt;新玩意登場~~&lt;/font&gt;&lt;/div&gt;&lt;p&gt;&lt;/font&gt;&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/skyecastle/&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;Gallery1391&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1391 = new TTGallery(&quot;Gallery1391&quot;);Gallery1391.appendImage(&quot;http://www.ifublog.com/attach/76/1340795214.jpg&quot;, &quot;&quot;, 225, 300);Gallery1391.appendImage(&quot;http://www.ifublog.com/attach/76/1350338866.jpg&quot;, &quot;&quot;, 225, 300);Gallery1391.show();&lt;/script&gt;&lt;/p&gt;&lt;div align=&quot;center&quot;&gt;&lt;font color=&quot;#ff3399&quot;&gt;&lt;font color=&quot;#9b18c1&quot;&gt;Jacky仔&lt;/font&gt;&lt;br /&gt;
&lt;/font&gt;性別：應該是男的&lt;br /&gt;
年齡：不詳&lt;br /&gt;
特徵：光頭&lt;br /&gt;
個人願望：頭髮長得像樹一樣高&lt;br /&gt;
主人願望：希望他有出頭天 ^^&lt;/div&gt;</description>
			<category>Life is 亂玩．亂說</category>
			<category>雜記</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/139</guid>
			<comments>http://www.ifublog.com/skyecastle/139#entry139comment</comments>
			<pubDate>Sat, 16 Aug 2008 16:29:00 +0800</pubDate>
		</item>
		<item>
			<title>中tag</title>
			<link>http://www.ifublog.com/skyecastle/138</link>
			<description>&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;img src=&quot;http://www.ifublog.com/attach/76/1323997123.jpg&quot; width=&quot;300&quot; height=&quot;400&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
7月22日是衣服部落格两周年纪念，衣服设了一个游戏给衣服人。&lt;br /&gt;
&lt;br /&gt;
回答以下六个问题（以及附上一张创意自拍照），再把tag丢给另外一位衣服部落人，&lt;br /&gt;
一人传一人，如此类推。&lt;br /&gt;
&lt;br /&gt;
（以下这六个问题，是借用香港sina 三周年的问题）&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#ff3399&quot;&gt;Go~~&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
1.你寫blog有多久？最初為什麼有開始寫blog的念頭？&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;07年5月開始寫&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;等我老了中風後可以慕然回首&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
2.寫blog至今，最難忘的事是什麼？&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;有班女學生在times square看到我之後走過來問是不是天空之城的天空 ^^&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#000000&quot;&gt;3.你認為寫blog最重要的元素是什麼？&lt;br /&gt;
&lt;/font&gt;有熱情和時間&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#000000&quot;&gt;4.請用一個詞語／東西形容你的blog。為什麼會有這樣的想法？&lt;br /&gt;
&lt;/font&gt;文字和音樂&lt;br /&gt;
寫部落是生活的一部分，希望我的生活有文字有音樂&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#000000&quot;&gt;5.Blog在你的生活當中擔當著什麼角色？&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#993366&quot;&gt;記錄生活讓自己更完整&lt;/font&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br /&gt;
6.你覺得自己和衣服的blogger們有著怎样的關係？&lt;br /&gt;
&lt;/span&gt;&lt;font color=&quot;#993366&quot;&gt;&lt;strong&gt;這麼近 那麼遠 &amp;gt;&amp;lt;&lt;br /&gt;
&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
多得&lt;a href=&quot;http://ifublog.com/calvinlee&quot;&gt;&lt;font size=&quot;4&quot;&gt;卡文&lt;/font&gt;&lt;/a&gt;好介紹，我也怕怕地中tag，因為問題都很難答啊 YoY&amp;nbsp; 不過這次我認真地回答，認真地選照片，也認真地選下一個中tag者，他就是&lt;a href=&quot;http://ifublog.com/tomatotree&quot;&gt;&lt;font size=&quot;4&quot;&gt;番茄樹&lt;/font&gt;&lt;/a&gt; ^^</description>
			<category>Life is 亂玩．亂說</category>
			<category>tag</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/138</guid>
			<comments>http://www.ifublog.com/skyecastle/138#entry138comment</comments>
			<pubDate>Sun, 10 Aug 2008 19:21:00 +0800</pubDate>
		</item>
		<item>
			<title>生活照</title>
			<link>http://www.ifublog.com/skyecastle/137</link>
			<description>&lt;p&gt;&lt;font color=&quot;#993366&quot;&gt;如果說生活需要無比的勇氣 那肯定不足夠&lt;br /&gt;
最起碼要有一點點life passion吧&lt;br /&gt;
那麼一抹微笑 一句觸動心靈的話 一個溫暖的擁抱 窩心的關懷 等等等等&lt;br /&gt;
都是證明我們還活著的最佳印記&lt;br /&gt;
&lt;br /&gt;
^^&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/skyecastle/&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;Gallery1371&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1371 = new TTGallery(&quot;Gallery1371&quot;);Gallery1371.appendImage(&quot;http://www.ifublog.com/attach/76/1373229833.jpg&quot;, &quot;&quot;, 400, 300);Gallery1371.appendImage(&quot;http://www.ifublog.com/attach/76/1187598625.jpg&quot;, &quot;&quot;, 400, 300);Gallery1371.appendImage(&quot;http://www.ifublog.com/attach/76/1260580796.jpg&quot;, &quot;&quot;, 400, 300);Gallery1371.appendImage(&quot;http://www.ifublog.com/attach/76/1367195837.jpg&quot;, &quot;&quot;, 400, 300);Gallery1371.appendImage(&quot;http://www.ifublog.com/attach/76/1162731645.jpg&quot;, &quot;&quot;, 400, 300);Gallery1371.appendImage(&quot;http://www.ifublog.com/attach/76/1356716211.jpg&quot;, &quot;&quot;, 400, 300);Gallery1371.show();&lt;/script&gt; &lt;/p&gt;&lt;br /&gt;
</description>
			<category>Life is 亂玩．亂說</category>
			<category>生活照</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/137</guid>
			<comments>http://www.ifublog.com/skyecastle/137#entry137comment</comments>
			<pubDate>Thu, 07 Aug 2008 11:07:00 +0800</pubDate>
		</item>
		<item>
			<title>為什麼簡單的東西卻想那麼久</title>
			<link>http://www.ifublog.com/skyecastle/136</link>
			<description>&lt;p&gt;自從負責編務的同事離開後，我擔起了這責任，相對之下少出外採訪了。&lt;/p&gt;&lt;p&gt;我記得剛出來工作時，一位上司看了我的應徵文章──《在我心中的張愛玲》後對我說：「你的寫作手法既感性，但又據理力爭，創作力不錯，但唯一的缺點，是不能在適時創作環境情節，在寫作的潛意識裡，這叫過不了自己那關。」（印象中應該是這樣）&lt;/p&gt;&lt;p&gt;當年學院畢業出來才19歲，我比較關心的是能不能面試過關 ^^ 她的話引不起的我的興趣。多年後，當我要採訪草藥新聞，面對一群樂齡讀者，寫作手法被限制不能感性，更不能說道理，我想，這正如上述所說。&lt;/p&gt;&lt;p&gt;其實挺要命的。老板一直避免不讓我寫草藥，一來他擔心我的「少女情懷」會把草藥弄得感性，二來他怕溫馨的新聞給我搞到像說教那樣硬繃繃。&lt;/p&gt;&lt;p&gt;終於，闊別多月我再次做草藥，但是我寫了很久，組織了很多被要求的「故事畫面」後，就出現了無以為繼的瓶頸，遇難後我只好把計劃塞回進腦，讓它枯萎凍結。&lt;/p&gt;&lt;p&gt;時間一直是解決問題的良藥，我邊把線索藏在心裡，慢慢等待靈感出現。截稿日迫在眉睫，我急得快哭的時候，卻在一本舊雜誌看到一篇王家衛的專訪。他說：創作者就是負責解決問題的角色，所有的創作都是製作一大堆問題後，再慢慢拆招。&lt;/p&gt;&lt;p&gt;其實一篇新聞稿的創作不就是如此嗎？&lt;/p&gt;&lt;p&gt;受訪者的經歷就是疑問，我把疑問組織、消化、重組、呈現，把我聽見、領悟到的，摻合著無限想像寫完出來！&lt;/p&gt;&lt;p&gt;這看起來像是理所當然要這麼寫，但我繞了很遠的路，大圈轉了又轉才想出來。我不懂為什麼這麼簡單的東西，竟然要想這麼久。&lt;/p&gt;&lt;p&gt;寫作路上難免思路紊亂飄浮不定，許多路都要自己走一趟；當然，也可能是我笨沒有方向感吧！&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;許久沒更新，一來就長篇大論，如果你讀完的話，那就謝謝收看 ^^&lt;/font&gt;&lt;/p&gt;</description>
			<category>天空私語</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/136</guid>
			<comments>http://www.ifublog.com/skyecastle/136#entry136comment</comments>
			<pubDate>Wed, 06 Aug 2008 16:33:00 +0800</pubDate>
		</item>
		<item>
			<title>停電的瞬間</title>
			<link>http://www.ifublog.com/skyecastle/135</link>
			<description>&lt;p&gt;昨天到公司時剛好沒電，同事在忙著煽涼。忽然間我依稀記起幾米的《月亮忘記了》裡面有一句話：黑暗雖然孤獨，卻很溫暖。(大概是這樣吧)&lt;/p&gt;&lt;p&gt;在伸手不見五指的辦公室，我邊啃麵包邊和同事閒聊。編輯部沒有窗戶，所以看不見彼此，只有有一種對著空氣說話的感覺，但卻很溫暖。&lt;/p&gt;&lt;p&gt;平時和同事聊起工作，語氣不禁緊張起來，往往談得認真；停電時我們依舊談著公事，可是氣氛明顯緩和許多，是我們的心太久沒被淨化，還是我們都享受停電瞬間的短暫偷賴時光 ^^&lt;/p&gt;&lt;p&gt;其實今天我希望進到公司時剛好又停電，電源恢復後整顆心都緊繃起來。幸好今天去找方醫師，吃頓豐富的，心裡會好過一點。&lt;/p&gt;&lt;p&gt;待會再和大家分享今天吃什麼 ^______^&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#993366&quot;&gt;停電的時候，你們會做什麼?會不會吃東西?&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;更新後~~&lt;br /&gt;
&lt;/font&gt;&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;br /&gt;
爽&lt;br /&gt;
&lt;br /&gt;
還好今天有燦爛陽光+少許微風+一頓不勞而獲的午餐+無限的溫暖&lt;br /&gt;
&lt;br /&gt;
所以今天是豐收的，還沒寫完的稿除外 YoY&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/76/1286544315.jpg&quot; width=&quot;250&quot; height=&quot;188&quot; alt=&quot;&quot;/&gt;&lt;img src=&quot;http://www.ifublog.com/attach/76/1014065421.jpg&quot; width=&quot;250&quot; height=&quot;188&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/76/1395805330.jpg&quot; width=&quot;250&quot; height=&quot;188&quot; alt=&quot;&quot;/&gt;&lt;img src=&quot;http://www.ifublog.com/attach/76/1158348788.jpg&quot; width=&quot;250&quot; height=&quot;188&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/76/1102148739.jpg&quot; width=&quot;250&quot; height=&quot;188&quot; alt=&quot;&quot;/&gt;&lt;img src=&quot;http://www.ifublog.com/attach/76/1236656723.jpg&quot; width=&quot;250&quot; height=&quot;188&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;第一組:崩大碗湯+炒紅鳳菜 &amp;gt;u&amp;lt;&lt;br /&gt;
第二組:孜然豬肉+蒸臭豆腐 ToT&lt;br /&gt;
第三組:辣炒大餅+大餅材料 ^_^&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;還是要感謝方醫師賜我豐富的一餐~~&lt;/font&gt;</description>
			<category>天空私語</category>
			<category>停電</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/135</guid>
			<comments>http://www.ifublog.com/skyecastle/135#entry135comment</comments>
			<pubDate>Tue, 29 Jul 2008 11:15:00 +0800</pubDate>
		</item>
		<item>
			<title>生活驚喜一則</title>
			<link>http://www.ifublog.com/skyecastle/133</link>
			<description>&lt;p&gt;我堅持自己不喜新忘舊，只是生活苦悶所以要製造驚喜 &lt;br /&gt;
看中LG PDA有一段時間，如今擁有後就像「一見鍾情的兩個人終於在一起」的感覺，太幸福了&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#993366&quot;&gt;題內圖兩張~~LG KS20&lt;br /&gt;
&lt;/font&gt;&lt;img src=&quot;http://www.ifublog.com/attach/76/1257493123.jpg&quot; width=&quot;300&quot; height=&quot;200&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/76/1204195011.jpg&quot; width=&quot;200&quot; height=&quot;267&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
忙碌玩機去~~ ^________^&lt;/p&gt;&lt;br /&gt;
</description>
			<category>Life is 亂玩．亂說</category>
			<category>手機</category>
			<author> (天空)</author>
			<guid>http://www.ifublog.com/skyecastle/133</guid>
			<comments>http://www.ifublog.com/skyecastle/133#entry133comment</comments>
			<pubDate>Sun, 27 Jul 2008 15:08:00 +0800</pubDate>
		</item>
	</channel>
</rss>
