<ul><script style="text/javascript">
function showrecentcomments(json) {
for (var i = 0; i < 6; i++) {
var entry = json.feed.entry[i];
var ctlink;
var commentdate = entry.published.$t;
var cdyear = commentdate.substring(0,4);
var cdmonth = commentdate.substring(5,7);
var cdday = commentdate.substring(8,10);
var monthnames = new Array();
monthnames[1] = "Jan";
monthnames[2] = "Feb";
monthnames[3] = "Mar";
monthnames[4] = "Apr";
monthnames[5] = "May";
monthnames[6] = "Jun";
monthnames[7] = "Jul";
monthnames[8] = "Aug";
monthnames[9] = "Sep";
monthnames[10] = "Oct";
monthnames[11] = "Nov";
monthnames[12] = "Dec";


if (i == json.feed.entry.length) break;
for (var k = 0; k < entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
ctlink = entry.link[k].href;
break;
}
}
ctlink = ctlink.replace("#", "#comment-");
var ptlink = ctlink.split("#");
ptlink = ptlink[0];
var txtlink = ptlink.split("/");
txtlink = txtlink[5];
txtlink = txtlink.split(".html");
txtlink = txtlink[0];
var pttitle = txtlink.replace(/-/g," ");
pttitle = pttitle.link(ptlink);
if ("content" in entry) {
var comment = entry.content.$t;}
else
if ("summary" in entry) {
var comment = entry.summary.$t;}
else var comment = "";
var re = /<\S[^>]*>/g;
comment = comment.replace(re, "");


document.write(' ');
if (comment.length < 70) {
document.write('<div style="font-size:100%;background-color: transparent;border: #cccccc 0px dashed;margin-right:0px">' + '<span style="font-style:italic;">' + monthnames[parseInt(cdmonth,10)] + ' ' + cdday + '</span>');
document.write(' - ' + '<span style="font-weight:bold;">' + entry.author[0].name.$t + '</span>' + ' commented on ');
document.write('<span style="text-transform:capitalize;font-weight:bold;">' + pttitle + ':</span></div>');
document.write('<span style="font-style:italic;">' + comment + '</span>');
document.write('<hr/>');
}
else
{
comment = comment.substring(0, 70);
var quoteEnd = comment.lastIndexOf(" ");
comment = comment.substring(0, quoteEnd);
document.write('<div style="font-size:100%;background-color: transparent;border: #cccccc 0px dashed;margin-right:0px">' + '<span style="font-style:italic;">' + monthnames[parseInt(cdmonth,10)] + ' ' + cdday + '</span>');
document.write(' - ' + '<span style="font-weight:bold;">' + entry.author[0].name.$t + '</span>' + ' commented on ');
document.write('<span style="text-transform:capitalize;font-weight:bold;">' + pttitle + ':</span></div>');
document.write('<span style="font-style:italic;">' + comment + '</span>' + '<span style="font-style:italic;font-weight:bold;font-size:90%;">' + '...<a href="' + ctlink + '">More-> </a>' + '</span>');
document.write('<hr/>');
}
}
document.write(' ');
}
</script>

<script src="http://YOURBLOG.blogspot.com/feeds/comments/default?alt=json-in-script&callback=showrecentcomments">
</script>
<noscript>You need to enable JavaScript to read this.</noscript></ul>
<p><font size="1"><a href="http://mariannelacroix.blogspot.com/2009/08/recent-comments-widget-customized-by.html">Get this Widget</a> </font></p>