
/**
 * Initiate required classes.
 */
var messagebox;
var blog;
document.observe('dom:loaded', function() {
	messagebox = new MessageBox();
	var location = window.location.toString();
	if (document.body.id == 'blog') {
		blog = new Blog();
	}
});

