// Enter a google key to be able to do searches in the link dialog, like so var blozomGoogleKey ='SDGSDGSSDGSD'
var blozomGoogleKey = false;

blozomPrefs = new Object;

blozomPrefs["default"] = new Object;

// Blozom supports multiple blogs, this sets the default
blozomPrefs["default"].defaultBlog = true;

// Your name! Not uses in 0.1.1
blozomPrefs["default"].authorName = "Blozom User";

// Your site name, used in weblog pings.
blozomPrefs["default"].siteName = "A blozom weblog";

// The file extension should be customized to your server type
// You might want .php or .asp
blozomPrefs["default"].blozomFileExtension = '.html';

// This is where your HTML will be rendered
blozomPrefs["default"].blozomPublishPath = 'C:\\wwwroot\\blozom';  // No trailing slash plz

// This is where your data files will be kept
blozomPrefs["default"].blozomDataPath = 'C:\\dev\\blozom'; // No trailing slash plz

// This is a path to your content folder from the root folder of your webserver
blozomPrefs["default"].blozomWebRoot = '/blozom/';

// Your domain
blozomPrefs["default"].remotePath = 'http://www.blozom.com';

// Where to store your category specific rss feeds?
blozomPrefs["default"].blozomCategoriesFolder ='categories';

// How many items in your feed?
blozomPrefs["default"].rssMaxFeedItems = 8;

// What categories should have their own feeds?
blozomPrefs["default"].blozomRssCategories = "Category1,Category2";

// Category definition
blozomPrefs["default"].blozomCategoryXML = "<xml><category>Category1</category><category>Category2</category><category>Category3</category><category>Category4</category><category>Category5</category><category>Category6</category></xml>";

// RSS Template. Customize site name, etc
blozomPrefs["default"].rssStarter = '<?xml version="1.0"?>' +
'<rss version="2.0">'+
	'<channel>'
		+'<title>Site Title</title>'
		+'<link>http://blozom.com/</link>'+
		'<description>My weblog tagline.</description>'
		+'<copyright>Copyright 2003</copyright>'
		+'<lastBuildDate>Wed, 08 Jan 2003 17:24:23 GMT</lastBuildDate>'+
		'<docs>http://backend.userland.com/rss</docs>'+
		'<generator>Blozom 0.1</generator>'+
		'<managingEditor>somebody@foo.com</managingEditor>'
		+'<webMaster>somebody@foo.com</webMaster>'+
		'<category domain="http://www.weblogs.com/rssUpdates/changes.xml">rssUpdates</category>'+ 
	'</channel>'+
'</rss>';