$(document).ready(function() {

//adding class for testimonials block for inner pages
$("#brighton_two-column-right #brighton_col3 div.block:has(.feedreader_box)").addClass("testimonialsinner");
$("div.testimonialsinner").prepend("<h1>Client Testimonials</h1>");
$(".testimonialsinner div.ItemDetails").wrapInner("<span></span>");
$(".testimonialsinner tr:has(td.Item)").addClass("firstrow");
$(".testimonialsinner td.Item div.ItemDetails").prependTo(".testimonialsinner tr.firstrow td.Item");
$(".testimonialsinner tr:has(td.AltItem)").addClass("secondrow");
$(".testimonialsinner td.AltItem div.ItemDetails").prependTo(".testimonialsinner tr.secondrow td.AltItem");
$("#readmore").appendTo("div.testimonialsinner div.pad");

});