// requires "jquery.js"

$(function(){
	var de = document.documentElement;
	var w = window.innerWidth || self.innerWidth || (de && de.clientWidth) || document.body.clientWidth;
	var h = window.innerHeight || self.innerHeight || (de && de.clientHeight) || document.body.clientHeight;
	var ch = 60;
	w = (w && (w < 560 ? w : 560)) || 560;
	h = (h && (h < 640 ? h : 640)) || 640;
	$("a.link_to_features").each(function(){
		$(this).attr("href", $(this).attr("href") + "?TB_iframe=true&height=" + (h - ch) + "&width=" + w);
	});
})

