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