﻿// JavaScript Document
$(document).ready( function() {
	// create xhtml strict friendly iframe
	$('a.iframe_right').each(
		function (i) {
		$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "' frameborder='0' scrolling='no' width='140' height='350' ></iframe>");
	});
	$('a.iframe_top').each(
		function (i) {
		$(this).replaceWith("<iframe src='" + this.getAttribute("href") + "' frameborder='0' scrolling='no' width='728' height='90' ></iframe>");
	});
});