// AFTER DOM IS LOADED
window.addEvent('domready', function() {
	// Load Content
	// Function loadContent in header.php (to support php tags)
	var contentFx = new Fx.Morph('content', {
		duration: 1000,
		wait: false,
		transition: Fx.Transitions.Sine.easeOut
	}).start({
		'opacity' : [0, 1]
	});
	// Load Sidebar
	// Function loadSidebar in header.php (to support php tags)
	document.getElementById('sidebar').style.visibility = 'visible';
	document.getElementById('sidebar').style.height = '400px';
});
// TEMPORARY BLOG CONTENT
function blogWindow()
{
	alert('MatterFarm, the Do You Matter? Blog is coming soon...');
}