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