window.addEvent("domready", function() {
	$$(".rounder").each(function(item) {
		top_left = new Element('img')
			.set('src', 'wp-content/themes/sharethis_2.0/images/rounder_tl.gif')
			.set('class', 'left');
		top_right = new Element('img')
			.set('src', 'wp-content/themes/sharethis_2.0/images/rounder_tr.gif')
			.set('class', 'right');
		top_div = new Element('div')
			.set('class', 'top')
			.adopt(top_left, top_right)
			.inject(item, 'top');
		btm_left = new Element('img')
			.set('src', 'wp-content/themes/sharethis_2.0/images/rounder_bl.gif')
			.set('class', 'left');
		btm_right = new Element('img')
			.set('src', 'wp-content/themes/sharethis_2.0/images/rounder_br.gif')
			.set('class', 'right');
		btm_div = new Element('div')
			.set('class', 'bottom')
			.adopt(btm_left, btm_right)
			.inject(item, 'bottom');
		item.removeClass('rounder');
		item.addClass('rounded');
	});
});