/* Menu */
function over(objekt) {
	document.getElementById(objekt.id+"_").style.visibility = "visible";
}
function out(objekt) {
	document.getElementById(objekt.id+"_").style.visibility = "hidden";
}
function over2(objekt) {
	if (document.getElementById("f1i"+objekt.id.substring(3,7))) {
		document.getElementById("f1i"+objekt.id.substring(3,7)).style.color = "#FFFF00";
		document.getElementById("f1i"+objekt.id.substring(3,7)).style.background = "#5F666A";
	}

	if (document.getElementById("f2i"+objekt.id.substring(3,7))) {
		document.getElementById("f2i"+objekt.id.substring(3,7)).style.color = "#FFFF00";
		document.getElementById("f2i"+objekt.id.substring(3,7)).style.background = "#5F666A";
	}
	if (document.getElementById("f3i"+objekt.id.substring(3,7))) {
		document.getElementById("f3i"+objekt.id.substring(3,7)).style.color = "#FFFF00";
		document.getElementById("f3i"+objekt.id.substring(3,7)).style.background = "#5F666A";
	}
	if (document.getElementById("f4i"+objekt.id.substring(3,7))) {
		document.getElementById("f4i"+objekt.id.substring(3,7)).style.color = "#FFFF00";
		document.getElementById("f4i"+objekt.id.substring(3,7)).style.background = "#5F666A";
	}
	document.getElementById(objekt.id).style.color = "#5F666A";
	document.getElementById(objekt.id).style.background = "#FFFF00";
	if (objekt.id.substring(1,2)==4) {
		document.getElementById("f"+objekt.id.substring(3,7)).src = "img/video.jpg";
	}else {
		document.getElementById("f"+objekt.id.substring(3,7)).src = "img/reality/"+objekt.id.substring(3,7)+"_"+objekt.id.substring(1,2)+".jpg";
	}
}
// Zvacseniny obrazka 
function obrazok(objekt) {
	if (document.getElementById(objekt).src.substring(document.getElementById(objekt).src.length-9, document.getElementById(objekt).src.length-4)=="video") {
		video(objekt.substring(1, 500));
	} else {
//		window.open(document.getElementById(objekt).src.substring(0, document.getElementById(objekt).src.length-4)+"v.jpg", "Obr zok","width=420,height=320");
		window.open(document.getElementById(objekt).src.substring(0, document.getElementById(objekt).src.length-4)+"v.jpg", "_blank","width=420,height=320");
	}
}
// Video
function video(id) {
//	window.open("video.php?id="+id, "Video","titlebar=0,resizable=1,width=240,height=180");
	window.open("video.php?id="+id, "_blank","titlebar=0,resizable=1,width=240,height=180");
}



