<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>阿里山日出民宿</title>
		<link>http://www.seasonstar.com.tw/blog/</link>
		<description>Seasonstar</description>
		<language>zh-CN</language>
		<pubDate>Sat, 03 Dec 2011 17:17:53 +0800</pubDate>
		<item>
			<title>2011/10/31攝  /最新雲海雲瀑季初豋場</title>
			<link>http://www.seasonstar.com.tw/blog/150</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1501&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1501 = new TTGallery(&quot;Gallery1501&quot;);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1066369063.jpg&quot;, &quot;&quot;, 203, 300);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1124866576.jpg&quot;, &quot;&quot;, 400, 270);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1021742154.jpg&quot;, &quot;&quot;, 400, 270);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1233344126.jpg&quot;, &quot;&quot;, 400, 270);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1379782227.jpg&quot;, &quot;&quot;, 400, 270);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1316133132.jpg&quot;, &quot;&quot;, 400, 270);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1291334687.jpg&quot;, &quot;&quot;, 400, 234);Gallery1501.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1039552809.jpg&quot;, &quot;&quot;, 400, 270);Gallery1501.show();&lt;/script&gt;</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Fri, 04 Nov 2011 01:15:49 +0800</pubDate>
		</item>
		<item>
			<title>等濃霧散去後，就能看到最美麗的星空了</title>
			<link>http://www.seasonstar.com.tw/blog/149</link>
			<description>&lt;iframe height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/-vakYmMZxJg&quot; frameborder=&quot;0&quot; width=&quot;500&quot;&gt;&lt;/iframe&gt;</description>
			<category>影音</category>
			<author> (四季星空)</author>
			<pubDate>Wed, 26 Oct 2011 00:59:34 +0800</pubDate>
		</item>
		<item>
			<title>睽違已久的日落雲海......2011/5/28攝</title>
			<link>http://www.seasonstar.com.tw/blog/148</link>
			<description>&lt;p&gt;&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1481&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1481 = new TTGallery(&quot;Gallery1481&quot;);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1196955181.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1003481655.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1346645533.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1028910649.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1225614529.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1010741419.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1096295767.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1124395225.jpg&quot;, &quot;&quot;, 400, 271);Gallery1481.show();&lt;/script&gt; &lt;/p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 這不是森林遊樂區裡的美景喔~&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 在長達2.5小時的阿里山公路會經過大大小小的村莊&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 只要有面向西方缺口的點在適合的天氣下&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 都有機會欣賞到如此的日落雲海的美景&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;秋冬季節是雲海比較容易出現的時間點&lt;br /&gt;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &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; &amp;nbsp;&amp;nbsp;</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Sat, 28 May 2011 23:45:56 +0800</pubDate>
		</item>
		<item>
			<title>阿里山迎花季 免費接駁車服務遊客</title>
			<link>http://www.seasonstar.com.tw/blog/147</link>
			<description>&lt;div id=&quot;article_title&quot;&gt;&lt;h1 class=&quot;title19_red&quot;&gt;&amp;nbsp; &lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1318065422.jpg&quot; width=&quot;412&quot; height=&quot;600&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;&lt;/h1&gt;&lt;/div&gt;&lt;div id=&quot;article_size&quot;&gt;&lt;span class=&quot;article_date&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;更新日期:2011/03/11 11:10&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;article_text_medium&quot;&gt;&lt;/div&gt;&lt;div id=&quot;article_content&quot;&gt;&lt;div id=&quot;msncontent&quot;&gt;&lt;p&gt;今年阿里山花季本月15號登場，預料將湧入超過二十萬人次的遊客上山賞花，林務局嘉義林區管理處為服務遊客，花季期間每逢星期六、日，將在阿里山公路86公里到95公里間，提供中型巴士免費接駁遊客到阿里山森林遊樂區大門。 &lt;p&gt;嘉義林區管理處指出，花季期間，阿里山公路86公里到95公里路旁空地，都規劃有臨時停車格供遊客停放車輛，並提供免費接駁車接送遊客到大門口，&lt;font color=&quot;#ff0000&quot;&gt;搭乘免費接駁車遊客還可享有入園門票75折優惠。 &lt;/font&gt;&lt;p&gt;免費接駁車服務時間為花季期間，每個周六日，從凌晨3點30分到下午4點30分，每隔20分鐘對開1班次，並將視遊客人數機動增加班次，沿途設有10處臨時招呼站，接駁車兩側掛有紅布條供遊客辨識。 &lt;p&gt;另外，嘉義林區管理處為慶祝建國百年，花季期間並推出「百齡團購」好康！&lt;font color=&quot;#ff0000&quot;&gt;只要在非假日同團民眾歲數加起來超過一百歲，即可享有阿里山森林遊樂區門票100元優惠！ &lt;br /&gt;
&lt;/font&gt;&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 圖片來源&amp;nbsp; 漫步在雲端&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Fri, 11 Mar 2011 12:37:08 +0800</pubDate>
		</item>
		<item>
			<title>百年  櫻花饗宴即將登場~</title>
			<link>http://www.seasonstar.com.tw/blog/146</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://www.seasonstar.com.tw/blog/attach/1/1304919849.jpg&quot; width=&quot;328&quot; height=&quot;477&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img('http://www.seasonstar.com.tw/blog/attach/1/1304919849.jpg')&quot;/&gt;&lt;/div&gt;&lt;font size=&quot;3&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;春天是百花盛開的的季節 &amp;nbsp; &amp;nbsp;別錯過美好的時光喔~&lt;br /&gt;
&amp;nbsp; &lt;a href=&quot;http://alishan.cyc.edu.tw/modules/tadnews/index.php?nsn=1123&quot;&gt;http://alishan.cyc.edu.tw/modules/tadnews/index.php?nsn=1123&lt;/a&gt;&lt;/font&gt;</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Fri, 04 Mar 2011 19:27:17 +0800</pubDate>
		</item>
		<item>
			<title>幸福旅宿---四季星空民宿</title>
			<link>http://www.seasonstar.com.tw/blog/145</link>
			<description>&lt;object style=&quot;width: 510px; height: 320px&quot; width=&quot;510&quot; height=&quot;320&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/pr2pFTtzUPU?fs=1&amp;amp;hl=zh_TW&amp;amp;color1=0x006699&amp;amp;color2=0x54abd6&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;embed loop=&quot;true&quot; menu=&quot;false&quot; quality=&quot;high&quot; width=&quot;510&quot; height=&quot;320&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&quot; src=&quot;http://www.youtube.com/v/pr2pFTtzUPU?fs=1&amp;amp;hl=zh_TW&amp;amp;color1=0x006699&amp;amp;color2=0x54abd6&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description>
			<category>影音</category>
			<author> (四季星空)</author>
			<pubDate>Mon, 10 Jan 2011 15:22:20 +0800</pubDate>
		</item>
		<item>
			<title>聖誕快樂~</title>
			<link>http://www.seasonstar.com.tw/blog/144</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://www.seasonstar.com.tw/blog/attach/1/1402803569.jpg&quot; width=&quot;500&quot; height=&quot;375&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img('http://www.seasonstar.com.tw/blog/attach/1/1402803569.jpg')&quot;/&gt;&lt;/div&gt;&lt;br /&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;新細明體&quot;&gt;&lt;span style=&quot;font-family: 新細明體; color: navy; font-size: 12pt&quot;&gt;親愛的朋友們&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot;&gt;&lt;span style=&quot;color: navy&quot; lang=&quot;EN-US&quot;&gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;&lt;span style=&quot;color: navy; font-size: 12pt&quot; lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;新細明體&quot;&gt;&lt;span style=&quot;font-family: 新細明體; color: navy; font-size: 12pt&quot;&gt;你們好嗎&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot;&gt;&lt;span style=&quot;color: navy&quot; lang=&quot;EN-US&quot;&gt;??? &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot; face=&quot;新細明體&quot;&gt;&lt;span style=&quot;font-family: 新細明體; color: navy; font-size: 12pt&quot;&gt;又做又拍&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot;&gt;&lt;span style=&quot;color: navy&quot;&gt; &amp;nbsp; &amp;nbsp;總算設計好平安夜的MENU 真開心~&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;1&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy; font-size: 9pt&quot; lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;新細明體&quot;&gt;&lt;span style=&quot;font-family: 新細明體; color: navy; font-size: 12pt&quot;&gt;玉山下雪了真得冷ㄐㄐ&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy&quot;&gt; &amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font color=&quot;navy&quot; face=&quot;新細明體&quot;&gt;&lt;span style=&quot;font-family: 新細明體; color: navy&quot;&gt;大家要多保重喔&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy&quot; lang=&quot;EN-US&quot;&gt;~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy; font-size: 12pt&quot; lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;新細明體&quot;&gt;&lt;span style=&quot;font-family: 新細明體; color: navy; font-size: 12pt&quot;&gt;祝福你們佳節平安愉快&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;navy&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy&quot; lang=&quot;EN-US&quot;&gt;~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy; font-size: 12pt&quot; lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;font color=&quot;navy&quot; size=&quot;3&quot; face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-family: Arial; color: navy; font-size: 12pt&quot; lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description>
			<category>關於四季星空</category>
			<author> (四季星空)</author>
			<pubDate>Sat, 18 Dec 2010 22:26:39 +0800</pubDate>
		</item>
		<item>
			<title>好康活動來囉~ 上傳照片可以抽 &quot;iphone&quot;</title>
			<link>http://www.seasonstar.com.tw/blog/143</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://www.seasonstar.com.tw/blog/attach/1/1401557594.jpg&quot; width=&quot;500&quot; height=&quot;381&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img('http://www.seasonstar.com.tw/blog/attach/1/1401557594.jpg')&quot;/&gt;&lt;/div&gt;&lt;br /&gt;
2010 阿里山步道遊蹤 &amp;nbsp; 最新活動網站 &lt;a href=&quot;http://funali.2000king.com/&quot;&gt;http://funali.2000king.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
阿里山線上步道遊蹤網剛出爐喔~ &amp;nbsp;&lt;a href=&quot;http://www.ali-nsa.net/trail/index.php&quot;&gt;http://www.ali-nsa.net/trail/index.php&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
裡頭有各個步道詳細的人文及地圖介紹 &amp;nbsp;喜愛健行的朋友們可以多加利用!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Tue, 09 Nov 2010 22:04:54 +0800</pubDate>
		</item>
		<item>
			<title>阿里山神木婚禮</title>
			<link>http://www.seasonstar.com.tw/blog/142</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(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.seasonstar.com.tw/blog/attach/1/1195610641.jpg&quot;, &quot;&quot;, 400, 266);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1379719225.jpg&quot;, &quot;&quot;, 400, 266);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1079444301.jpg&quot;, &quot;&quot;, 400, 265);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1189959498.jpg&quot;, &quot;&quot;, 400, 265);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1160909600.jpg&quot;, &quot;&quot;, 400, 266);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1089971400.jpg&quot;, &quot;&quot;, 400, 265);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1327025156.jpg&quot;, &quot;&quot;, 199, 300);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1314987211.jpg&quot;, &quot;&quot;, 199, 300);Gallery1421.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1048447070.jpg&quot;, &quot;&quot;, 400, 265);Gallery1421.show();&lt;/script&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;阿里山神木婚禮將在11月4日、5日兩天一夜浪漫登場 &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 接下來 楓紅&amp;nbsp; &amp;nbsp;雲海 &amp;nbsp; 日出 &amp;nbsp;夕照美景也邀您一起來體驗~ &lt;br /&gt;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.2010alsw.mgo.tw/&quot;&gt;http://www.2010alsw.mgo.tw/&lt;/a&gt;</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Thu, 28 Oct 2010 22:06:02 +0800</pubDate>
		</item>
		<item>
			<title>嘉義縣公車真正有在進步喔~</title>
			<link>http://www.seasonstar.com.tw/blog/140</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://www.seasonstar.com.tw/blog/attach/1/1242436909.gif&quot; width=&quot;314&quot; height=&quot;277&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img('http://www.seasonstar.com.tw/blog/attach/1/1242436909.gif')&quot;/&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
由於&amp;nbsp; 9/6 &amp;nbsp;又開始在70K處交通管制 &amp;nbsp; &amp;nbsp;根據前幾個月的經驗&amp;nbsp; 常常會使到站班次延誤嚴重&lt;br /&gt;
&lt;br /&gt;
以至於等候公車時間不似已往準確 &amp;nbsp;原本還在擔心不知如何對搭乘公車的乘客報時&lt;br /&gt;
&lt;br /&gt;
現在真是太棒嘞&amp;nbsp; &amp;nbsp;公車上加裝追蹤器 &amp;nbsp; 一目瞭然 &amp;nbsp;&amp;nbsp; 只要再觀察幾天 &amp;nbsp; 就可抓出到站時間了&lt;br /&gt;
&lt;br /&gt;
這樣不用再擔心&amp;nbsp; 到底來了沒??? 到底過沒???&amp;nbsp; &amp;nbsp;真是便民耶~&lt;br /&gt;
&lt;br /&gt;
手機可上網的朋友在戶外時也可以多加利用喔~&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.cybus.gov.tw/index.jsp?req=busmap.jsp&quot;&gt;http://www.cybus.gov.tw/index.jsp?req=busmap.jsp&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Wed, 08 Sep 2010 18:19:29 +0800</pubDate>
		</item>
	</channel>
</rss>

