
$(document).ready(function() {
	feedFormat();
});

feedFormat = function() {
	$('div.feedburnerFeedBlock span[class=headline]').append( "<br /><div class='hr'><img src='a.gif' width='1' height='1' /></div>" );
	$('div.feedburnerFeedBlock img:first').css("margin","0px 0px 10px 0px");
	$('#creditfooter').css("display","none");
	$('div.feedburnerFeedBlock p[class=MsoNormal]').css("text-align","left");
	$('div.feedburnerFeedBlock p[class=MsoNormal]').css("margin","0px 0px 10px 0px");
	$('div.feedburnerFeedBlock br').remove();
	$('div p span').each(function(){
		if( $(this).html().indexOf('youtube') != -1 )
		{
			text = $(this).html();
			text = text.substring(text.toLowerCase().indexOf('src="')+5);
			text = text.substring(0,text.indexOf('"'));
			key = text.split('/');
			$(this).html('<span style="text-align:left;display:block;"><object width="420" height="346"><param name="movie" value="http://www.youtube.com/v/' + key[ key.length - 2 ] + '&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0" /> <param name="allowfullscreen" value="true" /> <param name="wmode" value="transparent" /> <embed src="http://www.youtube.com/v/' + key[ key.length - 2 ] + '&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0" type="application/x-shockwave-flash" allowfullscreen="true" width="420" height="346" wmode="transparent"></embed></object></span>');
		}
	});
};

