		function showPic(whichpic)
		{
			var source = whichpic.getAttribute("href");
			var placeholder = document.getElementById("placeholder");
			placeholder.setAttribute("src",source);
			
			var big = 'picView.php?pic=' + whichpic.getAttribute("title");
			
			var placeholder1 = document.getElementById("placeholder1");
			placeholder1.setAttribute("href",big);
			var placeholder2 = document.getElementById("placeholder2");
			placeholder2.setAttribute("href",big);
		}
		function prikaz(id)
		{
			var style = document.getElementById(id).style
			if (style.visibility == "hidden" || style.display == "none")
			{
				style.display = "inline";
			}
			else
			{
			   style.display = "none";
			}
		}
		
		function hover(obj){
			obj.style.backgroundColor="#dddddd";
		}
		function out(obj){
			obj.style.backgroundColor="#e4e9e5";
		}