$(document).ready(function() {


$(".feedreader_box td.Item").each( function() {

//create A tag
var A = document.createElement("a");

//use find() method to get the href of the news link
A.setAttribute("href",$(this).find(".ItemLink a").attr("href") );
A.innerHTML="read more...";

//append A tag to div.ItemDetails
$(this).find('div.ItemDetails').append(A);

});

});

