function pokaz(id){
	
	var id = document.getElementById(id);
	
	if(id.style.display == 'none'){
		id.style.display = 'block';
	}else{
		id.style.display = 'none';
	}

}

$(function() {
	$('a.lbox').lightBox({fixedNavigation:true});
});


$(document).ready(function(){

$("#reportaz").click(function () {
	$("#fotoreportaz").toggle("slow");
  });
});