function printCalendar(mbrId,dateString){
	var html = $.ajax({
	  url: "/script/pubBlogCalendar.jss?mbrId="+mbrId+"&dateString="+dateString,
	  async: false
	 }).responseText;
	 document.getElementById('blogEntryPublishDateCalendar').innerHTML=html;
}

function moveBeforeMonth(){
	printCalendar(document.getElementById('blogEntryCalendarMbrId').innerHTML,document.getElementById('blogCalendarBeforeMonthDate').innerHTML);
}
function moveNextMonth(){
	printCalendar(document.getElementById('blogEntryCalendarMbrId').innerHTML,document.getElementById('blogCalendarNextMonthDate').innerHTML);
}

$('.blogBox dd img').error(function(e) {
    $(this).replaceWith(($(this).attr('alt') || '') + '<br/><b>画像が表示出来ません</b>');
});
