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