
$(function(){
	
	var doSlideNes = function(data) {
		var topics = [];
		var lines = data.split(/[\r]?\n/g);
		for (var i=0, len=lines.length; i<len; i++) {
			if (lines[i] != '') topics.push(lines[i]);
		}
		
		$('p.campaignlist:first').slideNews({
			items: topics,
			wait: 7500
			//next: 'p.topics1>a',
			//prev: 'p.topics3>a'
		});
	};
	
	if ($.fn.slideNews) {
		if (window.location.href.substr(0, 4) == 'http') {
			$.get('js/campaign.txt', function(data) {
				doSlideNes(data);
			});
		}
		
		// For local test.
		else {
			// This variable[data] is dummy.
			var data = "<a href=\"cplink/cplink10-02.html\" target=\"_blank\">【明治乳業】「明治エッセルスーパーカップミニマルチ」花のある暮らしプレゼントキャンペーン</a> (7月31日まで)\n"+
				"<a href=\"cplink/cplink10-04.html\" target=\"_blank\">【ロッテアイス】ハーシークランチボール 1万名様にギフトカードが2千円当たる!!</a> (8月31日まで)\n"+
				"<a href=\"cplink/cplink10-03.html\" target=\"_blank\">【ロッテアイス】爽クリアテイストバニラ 即当たり＆マイレージキャンペーン</a> (10月31日まで)\n"+
				"<a href=\"cplink/cplink10-01.html\" target=\"_blank\">【赤城乳業】家族みんなで思い出残そう！キャンペーン</a> (11月30日まで)\n";
			doSlideNes(data);
		}
	}
});
