function changePicture(path)
{
	var con = document.getElementById("image_big");
	
	con.innerHTML = '<img src="' + path + '" /><div id="image_close"><a href="#" onclick="hidePicture();"><img src="ovb/ausstattung/close.jpg" border="0" /></a></div>';
	
	// Place it centered
	
	
	con.style.visibility = "visible";
	
}

function hidePicture()
{
	var con = document.getElementById("image_big");
	
	con.style.visibility = "hidden";
}


