var filterNavList = $('<li id="no-filter"><a href="javascript:" class="enabled">すべて</a><span>すべて</span></li><li id="filter-running"><a href="javascript:" class="enabled">開催中・開催予定</a><span>開催中・開催予定</span></li><li id="full-open"><a href="javascript:" class="open">全ての詳細情報を表示</a><a href="javascript:" class="close">全ての詳細情報を隠す</a></li>');

var blog_json_url = 'http://ex-blog.panasonic.co.jp/exhibition/json.js.php';
var blog_read_more = 'その他のエントリー一覧';

var statusIconList = new Array(
	$('<img src="/exhibition/ja/img/icn_status_01.gif" width="55" height="15" alt="(開催終了)">'),
	$('<img src="/exhibition/ja/img/icn_status_02.gif" width="55" height="15" alt="(開催中)">'),
	$('<img src="/exhibition/ja/img/icn_status_03.gif" width="55" height="15" alt="(開催予定)">')
);

var notFoundNotice = $('<p id="notFoundNotice">現在、開催中・開催予定の展示会への出展情報はありません。</p>');

function getDate(_str){
	var str = _str.replace('年', '/').replace('月', '/').replace(/日.+$/, '');
	var result = new Date(str);
	if(isNaN(result)){
		result = new Date('2000/' + str);
	}
	return result;
}

function formatDate(_date){
	return _date.getFullYear() + '年'
	+ (_date.getMonth()+1) + '月'
	+ _date.getDate() + '日'
	+ '(' + ['日', '月', '火', '水', '木', '金', '土'][_date.getDay()] + ')'
	+ ' '
	+ _date.getHours() + '時'
	+ _date.getMinutes() + '分'
	+ _date.getSeconds() + '秒'
}

