var color;
var size;
var b;

function over(nom){
	color = document.getElementById('Show'+nom).style.color;
	size = document.getElementById('Show'+nom).style.fontSize;
	document.getElementById('Show'+nom).style.color = "#000000";
	document.getElementById('Show'+nom).style.fontSize = "90%";
}

function out(nom){
	document.getElementById('Show'+nom).style.color = color;
	document.getElementById('Show'+nom).style.fontSize = size;
}

function mOver(obj){
	color = "#C0C0C0";
	obj.style.background = "#A0A0A0";
}

function mOut(obj){
	obj.style.background = color;
}

function goto(a){
	var loc;
	if(a==0){
		b=0;
		loc = "./seminar";
		}
	if(a==1)
		loc = "./seminar";
	else if(a==2)
		loc = "./material";
	else if(a==3)
		loc = "./photo";
	else
		document.location = "err404.html";

	if(b==0)
		document.location = loc+".html";
	else
		document.location = loc+b+".html";
}

function fulltime(){
	var time=new Date();
	document.clock.find.value = time.toLocaleString();
	setTimeout("fulltime()",100);
}

