var LatestPostsJS = 
{
	CurrentView: null,
		
	SetPageHeaders : function()
	{
		ContentDisplayJS.EmbedFontByCSS("CategoryTitle", "Casual Contact MF");
		ContentDisplayJS.EmbedFontByCSS("ContentBoxSubHeader", "standard 07_55");
	},
	
	ShowDisplay : function()
	{
		if(this.CurrentView != "List")
		{
			//document.getElementById("DivView_List").style.display = "block";
			//document.getElementById("DivView_Box").style.display = "none";
			$('#DivView_List').fadeIn();
			$('#DivView_Box').css("display", "none");
			this.CurrentView = "List";
			document.getElementById("DivViewSelector").className = "DivViewSelection1_List";
		}
		else
		{
			$('#DivView_List').css("display", "none");
			$('#DivView_Box').fadeIn();
			this.CurrentView = "Box"
			document.getElementById("DivViewSelector").className = "DivViewSelection1_Box";
		}
	},
	
		
	CellMouseOver : function(obj)
	{
		obj.className = obj.className + "_over";
	},

	CellMouseOut : function(obj)
	{
		obj.className = obj.className.replace("_over", "");
	},

	init : function()
	{
		LatestPostsJS.SetPageHeaders();
		LatestPostsJS.ShowDisplay();
	}
}