
//funkcja ukrywa lub pokazuje element
function rozwinElement(id)
{
				var obj1 = document.getElementById('p'+id);
				
				var obj = document.getElementById('o'+id)
				
				if (obj.style.display == "block"){
					obj.style.display = "none";
					//obj1.src = "/images/arrow_black_right.gif"
				} else {
					obj.style.display = "block";
					//obj1.src = "/images/arrow_black_desc.gif";
				}
				return false;
}

function findPodMenu()
		{
			var i,obj;
		// loop through all images of the document
			obj=document.getElementsByTagName('*');
			for(i=0;i<obj.length;i++)
			{
		// test if the class 'roll' exists
				if(/podMenu/.test(obj[i].className))
				{
		// add the function roll to the image onmouseover and onmouseout and send
		// the image itself as an object
					obj[i].style="display:none";
				}
			}
		}




