// - Crossfader - 
// author:Timothy Groves - http://www.brandspankingnew.net
var useBSNns;
if (useBSNns){ 
	if (typeof(bsn) == "undefined")
			bsn = {}
	var _bsn = bsn;
} else {
	var _bsn = this;
}
_bsn.Crossfader = function (divs, fadetime, delay ) {
	this.nAct = -1;
	this.aDivs = divs;
	for (var i=0;i<divs.length;i++) {
		document.getElementById(divs[i]).style.opacity = 0;
		document.getElementById(divs[i]).style.position = "absolute";
		document.getElementById(divs[i]).style.filter = "alpha(opacity=0)";
		document.getElementById(divs[i]).style.visibility = "hidden";
	}
	this.nDur = fadetime;
	this.nDelay = delay;
	this._newfade();
}
_bsn.Crossfader.prototype._newfade = function() {
	if (this.nID1)
		clearInterval(this.nID1);
	this.nOldAct = this.nAct;
	this.nAct++;
	if (!this.aDivs[this.nAct])	this.nAct = 0;
	if (this.nAct == this.nOldAct)
		return false;
	document.getElementById( this.aDivs[this.nAct] ).style.visibility = "visible";
	this.nInt = 50;
	this.nTime = 0;
	var p=this;
	this.nID2 = setInterval(function() { p._fade() }, this.nInt);
}
_bsn.Crossfader.prototype._fade = function() {
	this.nTime += this.nInt;
	var ieop = Math.round( this._easeInOut(this.nTime, 0, 1, this.nDur) * 100 );
	var op = ieop / 100;
	document.getElementById( this.aDivs[this.nAct] ).style.opacity = op;
	document.getElementById( this.aDivs[this.nAct] ).style.filter = "alpha(opacity="+ieop+")";
	if (this.nOldAct > -1) {
		document.getElementById( this.aDivs[this.nOldAct] ).style.opacity = 1 - op;
		document.getElementById( this.aDivs[this.nOldAct] ).style.filter = "alpha(opacity="+(100 - ieop)+")";
	}
	if (this.nTime == this.nDur) {
		clearInterval( this.nID2 );
		if (this.nOldAct > -1)
			document.getElementById( this.aDivs[this.nOldAct] ).style.visibility = "hidden";
		var p=this;
		this.nID1 = setInterval(function() { p._newfade() }, this.nDelay);
	}
}
_bsn.Crossfader.prototype._easeInOut = function(t,b,c,d) {
	return c/2 * (1 - Math.cos(Math.PI*t/d)) + b;
}

// wordBreak JavaScript Library for Opera & Firefox
// MIT-style license.
// 2008 Kazuma Nishihata  http://www.to-r.net 
new function(){
	if(window.opera || navigator.userAgent.indexOf("Firefox") != -1){
		var wordBreak = function() {
			var wordBreakClass = "wordBreak";
			var table = document.getElementsByTagName("table");
			for(var i=0,len=table.length ; i<len ; i++){
				var tbClass = table[i].className.split(/\s+/);
				for (var j = 0; j < tbClass.length; j++) {
					if (tbClass[j] == wordBreakClass) {
						recursiveParse(table[i])
					}
				}
			}
		}
		var recursiveParse = function(pNode) {
			var childs = pNode.childNodes;
			for (var i = 0; i < childs.length; i++) {
				var cNode = childs[i];
				if (childs[i].nodeType == 1) {
					recursiveParse(childs[i]);
				}else if(cNode.nodeType == 3) {
					if(cNode.nodeValue.match("[^\n ]")){
						var plTxt = cNode.nodeValue.replace(/\t/g,"")
						var spTxt = plTxt.split("");
						spTxt = spTxt.join(String.fromCharCode(8203));
						var chNode = document.createTextNode(spTxt);
						cNode.parentNode.replaceChild(chNode,cNode)
					}
				}
			}
		}
	}else{
		var wordBreak = function() {
			if( document.styleSheets[0].addRule ){
				document.styleSheets[0].addRule(".wordBreak","word-break:break-all");
			}else if( document.styleSheets[0].insertRule ){
				document.styleSheets[0].insertRule(".wordBreak{word-break:break-all}", document.styleSheets[0].cssRules.length );
			}else{
				return false;
			}
		}
	}
	var addEvent = function(elm,listener,fn){
		try{
			elm.addEventListener(listener,fn,false);
		}catch(e){
			elm.attachEvent("on"+listener,fn);
		}
	}
	addEvent(window,"load",wordBreak);
}
var outstr = new Array();
document.write('<style>.wordBreak {word-break:break-all;} div.cf_wrapper{position: relative;}</style>');
outstr.push('<span style="font-size:10pt;"><a href="http://www.linkshare.ne.jp/" target="_blank" style="text-decoration: none; color: #000000;">Powered by LinkShare</a></span>')
outstr.push('<div class="cf_wrapper">')
outstr.push('<div class="cf_element" id="cf468_60-5658-1">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=201446.10000971&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://travel.rakuten.co.jp/share/images/linkshare/20100422_125_125_02.gif" title="ANA楽パック、夏のご旅行キャンペーン中！「航空券予約」と「宿泊予約」が一度にでき、あなただけのオリジナルパッケージツアーが実現できる新サービスです！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=201446.10000971&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">楽天トラベル株式会社</font></strong></a><br>');
outstr.push('<font color="#101010">ANA楽パック、夏のご旅行キャンペーン中！「航空券予約」と「宿泊予約」が一度にでき、あなただけのオリジナルパッケー...</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=201446.10000971&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/04/28&#65374;2016/04/22</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-2">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=97852.10001074&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://www.momastore.jp/11111/11111/img/linkshare/125-125_coupon_wedding.jpg" title="選べるお得なウェディング特典付！ MoMAstoreの引出物" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=97852.10001074&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">MoMAstore</font></strong></a><br>');
outstr.push('<font color="#101010">選べるお得なウェディング特典付！ MoMAstoreの引出物</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=97852.10001074&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/04/28&#65374;2011/04/19</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-3">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=130099.10000070&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://tennis365.net/img/affiliate/shopping_auto_125_125_b.gif" title="今すぐ使えるウェアが最大70％OFF!! SUMMER SALE 2010 開催中！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=130099.10000070&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">テニス３６５</font></strong></a><br>');
outstr.push('<font color="#101010">今すぐ使えるウェアが最大70％OFF!! SUMMER SALE 2010 開催中！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=130099.10000070&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/07/01&#65374;2012/02/27</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-4">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=138846.10001414&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://www.mizunoshop.net/include_html/affiliate/1006_supporter_125_125.jpg" title="血行促進効果で、より軽快な動きを追求。ひざ、ふくらはぎ、うで、足首+ふとももの4タイプをラインナップ。「医療機器クラス１」のサポーターが新登場！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=138846.10001414&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">MIZUNO SHOP ミズノ公式オンラインショップ</font></strong></a><br>');
outstr.push('<font color="#101010">血行促進効果で、より軽快な動きを追求。ひざ、ふくらはぎ、うで、足首+ふとももの4タイプをラインナップ。「医療機器ク...</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=138846.10001414&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/07/05&#65374;2012/07/03</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-5">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.900000518&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://www.shopch.jp/contents/afimg/afsac01.jpg" title="【初めてご購入の方に】　お買い物割引券3,000円分をプレゼント！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.900000518&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ショップチャンネル</font></strong></a><br>');
outstr.push('<font color="#101010">【初めてご購入の方に】　お買い物割引券3,000円分をプレゼント！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=58765.900000518&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/31&#65374;2016/08/30</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-6">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.900000520&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://www.shopch.jp/contents/afimg/afsac03.jpg" title="【秋の大収穫祭】　3時間限定タイムセール 2回目　9/22（水）　12時スタート！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.900000520&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ショップチャンネル</font></strong></a><br>');
outstr.push('<font color="#101010">【秋の大収穫祭】　3時間限定タイムセール 2回目　9/22（水）　12時スタート！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=58765.900000520&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/31&#65374;2016/08/30</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-7">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.900000521&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://www.shopch.jp/contents/afimg/afsac02.jpg" title="【秋の大収穫祭】　3時間限定タイムセール 1回目　9/15（水）　21時スタート！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.900000521&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ショップチャンネル</font></strong></a><br>');
outstr.push('<font color="#101010">【秋の大収穫祭】　3時間限定タイムセール 1回目　9/15（水）　21時スタート！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=58765.900000521&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/31&#65374;2016/08/30</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-8">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://linksynergy.jrs5.com/fs-bin/click?id=DkxI3fyhZto&offerid=200302.10000002&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://merchant.linksynergy.com/fs/banners/36114/36114_10000002.jpg" title="今話題の招待制オンライン・ファミリーセール・サイト。最大70％オフのセール価格で購入可。" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://linksynergy.jrs5.com/fs-bin/click?id=DkxI3fyhZto&offerid=200302.10000002&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">【キャンペーン】BRANDS for FRIENDS</font></strong></a><br>');
outstr.push('<font color="#101010">今話題の招待制オンライン・ファミリーセール・サイト。最大70％オフのセール価格で購入可。</font><img src="" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/17&#65374;2016/05/13</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-9">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=205281.10000022&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://merchant.linksynergy.com/fs/banners/36063/36063_10000022.jpg" title="毎日新しい21アイテムが20％の価格で登場！チャンスは24時間のみ！！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=205281.10000022&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">FOREVER 21 Japan</font></strong></a><br>');
outstr.push('<font color="#101010">毎日新しい21アイテムが20％の価格で登場！チャンスは24時間のみ！！</font><img src="" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/18&#65374;2016/06/15</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-10">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td width="60"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=166580.450000075&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank"><img src="http://www.kenko-keikaku.com/affiliate/LS_kenko/01_top/top_125_125.gif" title="スポーツ＆フィットネスの健康計画。 半期に一度の大決算！最高のシーズンに嬉しすぎる価格がやってきた！！ 大決算セール　7/27まで実施中！" height="58" width="58" border="0"></a></td>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=166580.450000075&type=4&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">健康計画</font></strong></a><br>');
outstr.push('<font color="#101010">スポーツ＆フィットネスの健康計画。 半期に一度の大決算！最高のシーズンに嬉しすぎる価格がやってきた！！ 大決算セー...</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=166580.450000075&type=4&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/07/01&#65374;2016/07/01</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-11">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=183092.10001024&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">富士通</font></strong></a><br>');
outstr.push('<font color="#101010">＜未使用・未開封＞最新パソコンのワケあり品を直販特価!台数限定!で大放出!送料無料＆富士通保証付</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=183092.10001024&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/07/23&#65374;2010/09/30</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-12">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=101174.20000371&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">セシール</font></strong></a><br>');
outstr.push('<font color="#101010">毎週金曜更新！最大70% Offのセシールのバーゲンコーナーではお買い得なバーゲン商品を多数品揃えしています！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=101174.20000371&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/14</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-13">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=100894.10000298&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">QVCジャパン</font></strong></a><br>');
outstr.push('<font color="#101010">テレビショッピングQVCのバリュープライス（Value Price）</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=100894.10000298&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-14">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=115047.10000342&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ジャパネットたかた　メディアミックスショッピング</font></strong></a><br>');
outstr.push('<font color="#101010">ジャパネットたかた日替り・週替わりセール</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=115047.10000342&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/11</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-15">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=100695.10000358&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">スタイライフ</font></strong></a><br>');
outstr.push('<font color="#101010">スタイライフのアウトレットサイト「CHU:SE」</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=100695.10000358&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/22&#65374;2011/06/22</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-16">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=97852.10000178&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">MoMAstore</font></strong></a><br>');
outstr.push('<font color="#101010">MoMAstore SALE</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=97852.10000178&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-17">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=130577.10000015&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ニッセン</font></strong></a><br>');
outstr.push('<font color="#101010">毎週水曜更新！365日SALE実施中♪</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=130577.10000015&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/04/28&#65374;2016/02/28</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-18">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=130577.100004228&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ニッセン</font></strong></a><br>');
outstr.push('<font color="#101010">おかげさまで40周年！【総額1億円分】プレゼントキャンペーン(～2011年3月31日）</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=130577.100004228&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/04/28&#65374;2011/03/31</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-19">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=130577.100004829&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ニッセン</font></strong></a><br>');
outstr.push('<font color="#101010">お客様プロフィール登録キャンペーン（～2010年12月31日まで）  登録するだけでもれなく500円分の割引特典プレゼント！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=130577.100004829&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/03&#65374;2010/12/31</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-20">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=125782.10000415&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">IMAGEnet</font></strong></a><br>');
outstr.push('<font color="#101010">IMAGEnetのIM★トク HAPPY SALE！MAX80% OFF!</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=125782.10000415&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/22&#65374;2011/06/17</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-21">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=58765.10000253&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ショップチャンネル</font></strong></a><br>');
outstr.push('<font color="#101010">テレビショッピングのショップチャンネル「本日のお買い得商品」～ショップ・スター・バリュー～</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=58765.10000253&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/16&#65374;2011/06/11</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-22">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=205281.10000046&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">FOREVER 21 Japan</font></strong></a><br>');
outstr.push('<font color="#101010">FOREVER21　セール情報</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=205281.10000046&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-23">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=205281.10000047&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">FOREVER 21 Japan</font></strong></a><br>');
outstr.push('<font color="#101010">毎日新しい21アイテムが20% Off価格で登場！チャンスは24時間のみ！！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=205281.10000047&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-24">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=201708.10000007&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">サルース【総合レディースファッション通販】</font></strong></a><br>');
outstr.push('<font color="#101010">サルースSalusのブーツ・パンプス・ワンピースなどのセール会場</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=201708.10000007&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-25">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=80138.10000597&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">エプソンダイレクト株式会社</font></strong></a><br>');
outstr.push('<font color="#101010">Web限定クーポンご利用で、省スペースデスクトップPC Endeavor AY301 が 8,400円OFF！（2010930 17：00まで）</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=80138.10000597&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/08/24&#65374;2010/10/01</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-26">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=80138.10000598&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">エプソンダイレクト株式会社</font></strong></a><br>');
outstr.push('<font color="#101010">Web限定クーポンご利用で、ネットトップPC Endeavor NP12 が 6,300円OFF！（2010930 17：00まで）</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=80138.10000598&type=3&subid=0" width="1" height="1">');outstr.push('&nbsp;<font color="#FF0000"><strong>Coupon!!</strong> → <strong>RYXX-10H-NKJ</strong></font>');
outstr.push('<br /><font color="#0000FF">2010/08/24&#65374;2010/10/01</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-27">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=80138.10000599&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">エプソンダイレクト株式会社</font></strong></a><br>');
outstr.push('<font color="#101010">Web限定クーポンご利用で、ネットトップPC Endeavor NP11 が 6,300円OFF！（2010930 17：00まで）</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=80138.10000599&type=3&subid=0" width="1" height="1">');outstr.push('&nbsp;<font color="#FF0000"><strong>Coupon!!</strong> → <strong>RYXX-10H-NKJ</strong></font>');
outstr.push('<br /><font color="#0000FF">2010/08/24&#65374;2010/10/01</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-28">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=80138.10000600&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">エプソンダイレクト株式会社</font></strong></a><br>');
outstr.push('<font color="#101010">Web限定クーポンご利用で、ミニノートPC Endeavor Na03mini が 5,250円OFF！（2010930 17：00まで）</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=80138.10000600&type=3&subid=0" width="1" height="1">');outstr.push('&nbsp;<font color="#FF0000"><strong>Coupon!!</strong> → <strong>RYXX-10H-MGE</strong></font>');
outstr.push('<br /><font color="#0000FF">2010/08/24&#65374;2010/10/01</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-29">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=51217.10000042&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">プライムショッピング</font></strong></a><br>');
outstr.push('<font color="#101010">激安SALE！最大84% OFF！人気アイテム大放出。数に限りがあるのでお急ぎください！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=51217.10000042&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/17</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-30">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=56419.10000302&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">トイザらス・ベビーザらス オンラインストア</font></strong></a><br>');
outstr.push('<font color="#101010">お買い得商品が勢ぞろい！トイザらスオンラインストアのクリアランス情報</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=56419.10000302&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-31">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=139701.10000110&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">Kojima.net（コジマ・ドット・ネット）</font></strong></a><br>');
outstr.push('<font color="#101010">一日限りのお買い得！コジマネット限定「特別日替わり品」</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=139701.10000110&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/18&#65374;2011/06/17</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-32">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=139701.10000111&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">Kojima.net（コジマ・ドット・ネット）</font></strong></a><br>');
outstr.push('<font color="#101010">お買い得！コジマネット（kojima.net）のアウトレットセール</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=139701.10000111&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/18&#65374;2011/06/17</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-33">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=190292.10000011&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">家電オンライン</font></strong></a><br>');
outstr.push('<font color="#101010">イイ物、掘り出し物が安い！家電オンラインの掘り出し市</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=190292.10000011&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/16</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-34">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=206629.90008404&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ベルメゾンネット</font></strong></a><br>');
outstr.push('<font color="#101010">あのアウター、雑貨、インテリア用品…etcがプライスダウン！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=206629.90008404&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/29&#65374;2016/12/31</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('<div class="cf_element" id="cf468_60-5658-35">');
outstr.push('<table width="468" height="60" border="0" cellspacing="0" style="border:1px dotted #AAAAAA; background-color:#FFFFFF;" class="wordBreak"><tr>');
outstr.push('<td align="left" style="font-size:12px;"><a href="http://click.linksynergy.com/fs-bin/click?id=DkxI3fyhZto&offerid=182823.10000520&type=3&subid=0&u1=100009_DkxI3fyhZto" target="_blank" style="text-decoration: none;"><strong><font color="#0000FF">ドクターシーラボ</font></strong></a><br>');
outstr.push('<font color="#101010">ドクターシーラボの（お買い得情報）新商品や限定品などのお買い得情報をお知らせ！</font><img src="http://ad.linksynergy.com/fs-bin/show?id=DkxI3fyhZto&bids=182823.10000520&type=3&subid=0" width="1" height="1">');outstr.push('<br /><font color="#0000FF">2010/06/17&#65374;2011/06/11</font></td>');
outstr.push('</tr></table>');
outstr.push('</div>');
outstr.push('</div>');
outstr.push('<script type="text/javascript">');
outstr.push('var cf5658 = new Crossfader( new Array(');
outstr.push('"cf468_60-5658-1",');
outstr.push('"cf468_60-5658-2",');
outstr.push('"cf468_60-5658-3",');
outstr.push('"cf468_60-5658-4",');
outstr.push('"cf468_60-5658-5",');
outstr.push('"cf468_60-5658-6",');
outstr.push('"cf468_60-5658-7",');
outstr.push('"cf468_60-5658-8",');
outstr.push('"cf468_60-5658-9",');
outstr.push('"cf468_60-5658-10",');
outstr.push('"cf468_60-5658-11",');
outstr.push('"cf468_60-5658-12",');
outstr.push('"cf468_60-5658-13",');
outstr.push('"cf468_60-5658-14",');
outstr.push('"cf468_60-5658-15",');
outstr.push('"cf468_60-5658-16",');
outstr.push('"cf468_60-5658-17",');
outstr.push('"cf468_60-5658-18",');
outstr.push('"cf468_60-5658-19",');
outstr.push('"cf468_60-5658-20",');
outstr.push('"cf468_60-5658-21",');
outstr.push('"cf468_60-5658-22",');
outstr.push('"cf468_60-5658-23",');
outstr.push('"cf468_60-5658-24",');
outstr.push('"cf468_60-5658-25",');
outstr.push('"cf468_60-5658-26",');
outstr.push('"cf468_60-5658-27",');
outstr.push('"cf468_60-5658-28",');
outstr.push('"cf468_60-5658-29",');
outstr.push('"cf468_60-5658-30",');
outstr.push('"cf468_60-5658-31",');
outstr.push('"cf468_60-5658-32",');
outstr.push('"cf468_60-5658-33",');
outstr.push('"cf468_60-5658-34",');
outstr.push('"cf468_60-5658-35"');
outstr.push('), 700, 15000 );');
outstr.push('</script><img border="0" width="1" height="1"src="http://ad.linksynergy.com/fs-bin/show?id=Dk8JKvDVYwE&bids=186984.100009&type=3&subid=0" />');
var str = outstr.join('');
document.write(str);