if (ie) {
	Event.observe(window, 'load', function() {
		var texts = $$('div.quote div.text');
		texts.each(function(text){
			text.insert({ top: "&#147;" });
			text.insert("&#148;");
		});
		var authors = $$('div.quote div.author');
		authors.each(function(a){
			a.insert({ top: "&#8212;" });
		});
		if (ie6) {
			var notice = new Element('div', { 'class': 'ie_notice' }).update("<p>You appear to be running an older version of Microsoft Internet Explorer (i.e. version 6 or 5.5). This page will not display correctly unless using a newer version like 7 or 8 or alternatively a different browser.</p><p>Still all information is reachable allthough the display is not as intended.</p>");
			$(document.body).insert({'top' : notice});
		}
	});
}
