// sIFR hides RSS out image because they're inside same div
window.onload = function() {
	if($('html.sIFR-active img.rssfeed').length > 0) {
		$('img.rssfeed').parent().each(function() {
			var b = $(this).parentsUntil('div.content').last();
			var a = $(this).detach();
			a.prependTo(b);
		})
	}
};

