
function hsIframeResize()
{
	try{
		top.hs.getExpander().reflow();
	} catch(e) {}
}


function wyszukiwarkaClick(ob, tekst)
{
	$(ob).onfocus = function(){
		if(this.value == tekst) this.value = '';
	};

	$(ob).onblur = function(){
		if(this.value == '') this.value = tekst;
	};
}

