$(document).ready( function() {
// create xhtml strict friendly iframe
$('a.iframe').each(
function (i) {
$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "' frameborder='0' scrolling='no' style='font:verdana; border:none; overflow:hidden; width:420px; height:30px;' allowTransparency='true'></iframe>");
}
);
});