﻿function showFilled(Value) {
  return (Value > 9) ? "" + Value : "0" + Value;
}
function StartClock24() {
  TheTime = new Date;
  document.clock.showTime.value = showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds());
  setTimeout("StartClock24()",1000)
}


function onmouseoverfa(itemtd,itemlink)
{
	itemtd.style.background='#E7E7E9';
	itemlink.style.color='#8B0304';
}

function onmouseoutfa(itemtd,itemlink)
{
	itemtd.style.background='#8B0304';
	itemlink.style.color='#ffffff';
}



function onmouseoveren(itemtd,itemlink)
{
	itemtd.style.background='#E7E7E9';
	itemlink.style.color='#8B0304';
}

function onmouseouten(itemtd,itemlink)
{
	itemtd.style.background='#8B0304';
	itemlink.style.color='#ffffff';
}

