// JavaScript Document
function $rj(){
	this.ini = function(){
		var os = document.getElementById("rjlight");
		if(os){
		$("#rjcel").fadeOut("fast");
		$("#rjlight").fadeOut("fast").remove();
			return false;
			}
		$("body").append(
		'<div id="rjlight" style="left:237px;margin-top:40px;padding-top:0;position:absolute;text-align:center;width:300px;">'+
		'<iframe style="border:medium none;height:640px;margin-left:0;width:277px;" src="http://www.parkminiatur.com/public/frontend/img_pl/legenda.html">'+
		''+
		'</iframe> <br />'+
		'<a onclick="rj.close();" style="width:200px; background-color:#fff;font-weight:bold;cursor:pointer;font-size:12px;margin-left:-400px;position:absolute;" > Zamknij okno </a>'+
		'</div>');
		$("#rjcel").blur();
		};
	this.close = function(){
		$("#rjcel").fadeOut("fast");
		$("#rjlight").fadeOut("fast").remove();
		};	
		
	};
window['rj'] = new $rj();
function showLegend(){
	rj.ini();
	
	};
