function OnVisible(v, i){ document.getElementById(v).style.visibility='visible'; document.getElementById(i).style.textDecoration='none';}
function OnHidden(v, i){ document.getElementById(v).style.visibility='hidden'; document.getElementById(i).style.textDecoration='underline';}

vsearch=false;
function OnOffSearch()
{
if(!vsearch)
{
	document.getElementById('tdtext').style.visibility='visible';
	document.getElementById('tdtext').style.position='relative';

    document.getElementById('tdbut').style.visibility='visible';
	document.getElementById('tdbut').style.position='relative';
	
	document.getElementById('stan').innerHTML='«';
	
	vsearch=true;
}
else
{
	document.getElementById('tdtext').style.visibility='hidden';
	document.getElementById('tdtext').style.position='absolute';

	document.getElementById('tdbut').style.visibility='hidden';
	document.getElementById('tdbut').style.position='absolute';
	
	document.getElementById('stan').innerHTML='»';
	
	vsearch=false;
}

return false;
}

koment=false;

function OnOfKoment()
{

if(koment)
{
$("#divkoment").fadeOut(700);
koment=false;
}
else
{
$("#divkoment").fadeIn(700);
koment=true;
}

return false;
}

//$(function() { $('#gallery a').lightBox(); });

function OnTdFonImg(v)
{
$("#gallery"+" #"+v).fadeTo(100,1);
}

function OffTdFonImg(v)
{
$("#gallery"+" #"+v).fadeTo(100,0.6);
}

vargolos=1;
function VarGolosIn(n){ vargolos=n; }

function AddGolos()
{
	top.location.href='index.php?r='+vargolos;
}