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