var $ready = Element.observe.curry(window, 'load');

$ready( function() {

	$$('H1', 'H2', '#sidebar .HeadingClass').each( function(el) {

		var header = [];
		el.innerHTML.split(' ').each( function(word) { header.push('<span>' + word.substr(0, 1) + '</span>' + (word.substr(0, 1) != '&' ? word.substring(1) : '')); });
		el.update(header.join(' '));

		if (el.tagName == 'H1')
			el.update('<img src="Images/header.gif" width="48" height="50" alt="" border="0" align="left">' + el.innerHTML);

	});

	if ($$('#sidebar .HeadingClass').length > 0) {
	
		$$('#sidebar .HeadingClass')[0].up('TD').setStyle({
			'paddingBottom': '5px',
			'borderBottom': '1px solid #999999',
			'textAlign': 'center'
		});

		$$('#sidebar .ArticleSummaryClass')[0].setStyle({
			'padding': '5px 5px 0 5px'
		}).previous().hide();

	}

});

