$(document).ready( function() {
// create xhtml strict friendly iframe
$('a.iframe').each(
function (i) {
$(this).replaceWith("<iframe width=500 height=2000 src='" + this.getAttribute("href") + "' frameborder='0' scrolling='no'></iframe>");
}
);
});