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