// Java Document
var clicked;
clicked="";
function show(arg1,arg2){
	document.getElementById(arg1).style.visibility="visible";
	if (arg2!=clicked){
	with (document.getElementById(arg2).style) {
		fontFamily= "Trebuchet MS";
		fontSize= "24px";
		color= "#FFFFFF";
		}}
}
function hide(arg1,arg2){
	document.getElementById(arg1).style.visibility="hidden";
	if (arg2!=clicked){
	with (document.getElementById(arg2).style) {
		fontFamily= "Trebuchet MS";
		fontSize= "14px";
		color= "#FFFFFF";
		}}
}
function down(arg){
	if (arg!=clicked){
	with (document.getElementById(arg).style) {
		fontFamily= "Trebuchet MS";
		fontSize= "24px";
		color= "#999999";
		}}
		if (clicked!='' && arg!=clicked){
		with (document.getElementById(clicked).style) {
		fontFamily= "Trebuchet MS";
		fontSize= "14px";
		color= "#FFFFFF";
		}}
	clicked=arg;
}
function galeria(id){
	okno=window.open(id,'okno','width=300 height=200');
}
