$(document).ready( function() {
// create xhtml strict friendly iframe
//See: http://www.ninjaswithjetpacks.com/posts/28/xhtml-strict-iframes-using-jquery
$('a.iframe').each(
function (i) {
$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "' frameborder='0' scrolling='no' width='100%' height='650px'></iframe>");
}
);
});
