/**
 *  コンテンツ サイドバー バナー
 */

(function() {
	var r = (/\/qa\.eisai\.jp/.test(location.href))? 'http://www.eisai.jp' : ((/testqa\.eisai\.jp/.test(location.href)) ? 'http://test.eisai.jp' : location.protocol + '//' + location.host)
	var bd = [
		{
			'file': '/resource/images/bnr/osteoporosis.jpg',
			'alt': '骨粗しょう症とは？骨折で寝たきりにならないために ～家族みんなで取り組む骨粗鬆症の予防と治療～',
			'link': '/diseases-and-symptoms/osteoporosis/'
		},
		{
			'file': '/resource/images/bnr/koshimigaki.jpg',
			'alt': '腰痛が心配な方へ… 今日から始める 腰みがき',
			'link': '/diseases-and-symptoms/koshimigaki/'
		},
		{
			'file': '/resource/images/top/bnr/bnr_af02.jpg',
			'alt': '心房細動手帳 心房細動の患者さまへ',
			'link': '/diseases-and-symptoms/af/'
		}
	];
	var bh = [
		{
			'file': '/resource/images/bnr/bnr_travelmin2.jpg',
			'alt': '家族に・自分に　ぴったりのトラベルミンはどれ？ 乗りもの酔い薬 トラベルミン&reg;シリーズ',
			'link': '/health-care/products/travelmin/c/'
		},
		{
			'file': '/resource/images/bnr/bnr_crv-c03.jpg',
			'alt': '鼻の外側に塗るだけでイオンの力で、花粉・ハウスダストなどの侵入を防ぐ クリスタルヴェール',
			'link': '/health-care/products/crv/c/'
		},
		{
			'file': '/resource/images/bnr/bnr_skainer03.jpg',
			'alt': 'スカイナーAL錠 症状の出始めに、つらくなる前に飲んで効く！',
			'link': '/health-care/products/skainar/c/'
		},
		{
			'file': '/resource/images/bnr/bnr_sahne03.jpg',
			'alt': '肌あれ、皮フにうるおいを与える ザーネクリーム',
			'link': '/health-care/products/sahne/c/'
		}
	];
	var b = bd.concat(bh);
	if (/diseases-and-symptoms/.test(location.href)) {
		b = bd;
	}
	if (/health-care/.test(location.href)) {
		b = bh;
	}
	$(b).each(function(i, e) {
		var t = (/http:\/\/|https:\/\//.test(this.link)) ? ' target="_blank"' : '';
		$('#bnr_side').append('<div><a href="' + r + this.link + '"' + t + '><img src="' + r + this.file + '" alt="' + this.alt + '" /></a></div>');
	});
})();

