function loadBlogStyle(initVals)
	{
	if(initVals)
		{
		if(document.getElementById('menu_blog'))
			{
			var menuBlog = document.getElementById('menu_blog');
			var contentBlog = document.getElementById('blog_content');
			
			// menuBlog.setAttribute("style", menuBlog.getAttribute("style") + "; float:left; ");
			// menuBlog.style.styleFloat = 'left';
			
			menuBlog.style.position = 'absolute';
			menuBlog.style.left = '0';
			menuBlog.style.width = '190px';
			menuBlog.style.height= '400px'; /*410*/
			menuBlog.style.padding= '5px';
			menuBlog.style.backgroundColor = '#E8E8E8';
			menuBlog.style.border = '1px solid #DECDF9';
			menuBlog.style.margin= '0';
			
			// contentBlog.setAttribute("style", menuBlog.getAttribute("style") + "; float:left; ");
			// contentBlog.style.styleFloat = 'left';
			contentBlog.style.position = 'relative';
			contentBlog.style.left = '200px';
			contentBlog.style.width = '355px';
			contentBlog.style.height= '420px';
			contentBlog.style.backgroundColor = 'white';
			contentBlog.style.overflow = 'auto';
			contentBlog.style.border = '1px solid #DECDF9';
			contentBlog.style.margin= '0';
			}
		}
	} 
	
function setBlogCalendarArraw(idNum)
	{
	showBlogCalendarArraw(idNum, false);
	setTimeout(showBlogCalendarArraw(idNum, true), 2000);
	}

function showBlogCalendarArraw(idNum, show)
	{
	if(show)
		{
		document.getElementById('prevMonth-'+idNum).style.display = '';
		document.getElementById('nextMonth-'+idNum).style.display = '';
		}
	else
		{
		document.getElementById('prevMonth-'+idNum).style.display = 'none';
		document.getElementById('nextMonth-'+idNum).style.display = 'none';
		}
	}
