///////////////////////////////////////////////////////////
// DJIR: init Django Image Replacement
///////////////////////////////////////////////////////////
function initDjir(){
	$$('.firstPost h2.title').each(function(header){
		// This is a link!
		var d = new DJIR(header, {fontAlias: 'InterstateLight', fontSize: 30, fontColor: '70cce2', hoverColor: 'ffdf52', bgColor: '082F3B'});
	});
	$$('.detail h2.title').each(function(header){
		var d = new DJIR(header, {fontAlias: 'InterstateLight', fontSize: 30, fontColor: '082f3b', bgColor: 'FFF'});
	});
	$$('.post h3.title').each(function(header){
		// This is a link!
		var d = new DJIR(header, {fontAlias: 'InterstateLight', fontSize: 20, fontColor: '082f3b', bgColor: 'e2f5f9'});
	});
	$$('.firstPost .meta .date em').each(function(header){
		var d = new DJIR(header, {fontAlias: 'SketchRockwell', fontSize: 31, fontColor: '4ba6c2', bgColor: '082F3B'});
	});
	$$('.meta .date em').each(function(header){
		var d = new DJIR(header, {fontAlias: 'SketchRockwell', fontSize: 31, fontColor: '4ba6c2'});
	});
	// $$('.mainBlock h2.archief').each(function(header){
	// 	var d = new DJIR(header, {fontAlias: 'InterstateBoldCondensed', fontSize: 16, fontColor: '373737'});
	// });
}


/* **********************************************
 * EVENTS
 * ********************************************* */
document.observe('dom:loaded', initDjir);
